Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed Dec 22, 2024
1 parent e5cb1ea commit 9acdbde
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion apps/smart-forms-app/src/vite-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ interface ImportMetaEnv {
readonly VITE_IN_APP_POPULATE: boolean;
readonly VITE_SHOW_DEBUG_MODE: string;
readonly VITE_PRESERVE_SYM_LINKS: boolean;

}

interface ImportMeta {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function createFhirPathContext(
const { launchContexts, updatedReferenceContexts, updatedContainedBatchContexts } =
await replaceFhirPathEmbeddings(parameters, questionnaire, terminologyRequestConfig);

let fhirPathContext: Record<string, any> = {};
const fhirPathContext: Record<string, any> = {};

// Add launch contexts and contained batch contexts to contextMap
for (const launchContext of launchContexts) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ const ItemLabelText = memo(function ItemLabelText(props: ItemLabelTextProps) {
);
}

const textFontWeight = itemLabelFontWeight != 'default' ? itemLabelFontWeight : 'normal';

// parse regular text
return (
<Typography
Expand Down

0 comments on commit 9acdbde

Please sign in to comment.