Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bodhish committed Jan 5, 2025
1 parent c23dcdd commit b469d5e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ export default function QuestionnaireResponsesList({ encounter }: Props) {
// New structured response rendering
Object.entries(item.structured_responses).map(
([type, response]) => {
console.log("LOGGG", type, response);
return (
<StructuredResponseView
key={response.id}
Expand Down
2 changes: 0 additions & 2 deletions src/components/Questionnaire/QuestionnaireForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,11 @@ export function QuestionnaireForm({
if (response.structured_type) {
const structuredData = response.values?.[0]?.value;
if (Array.isArray(structuredData) && structuredData.length > 0) {
console.log("structuredData", structuredData);
const structuredRequests = getStructuredRequests(
response.structured_type,
structuredData,
context,
);
console.log("structuredRequests", structuredRequests);
requests.push(...structuredRequests);
}
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/Organization/components/OrganizationLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export default function OrganizationLayout({
children,
}: Props) {
const path = usePath() || "";
console.log("navOrganizationId", navOrganizationId);
console.log("id", id);

const baseUrl = navOrganizationId
? `/organization/${navOrganizationId}/children`
: `/organization`;
Expand Down

0 comments on commit b469d5e

Please sign in to comment.