Skip to content

Commit

Permalink
removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaitasaini committed Nov 13, 2024
1 parent a191633 commit 6642158
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion services/app-api/types/reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ export type FormPageTemplate = {
type: PageType;
elements: PageElement[];
sidebar?: boolean;
subnavbar?: boolean;
hideNavButtons?: boolean;
childPageIds?: PageId[];
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const testReport: Report = {
title: "General Information",
type: PageType.Standard,
sidebar: true,
subnavbar: true,
elements: [
{
type: ElementType.Header,
Expand All @@ -44,7 +43,6 @@ const testReport: Report = {
title: "Required Measure Results",
type: PageType.Standard,
sidebar: true,
subnavbar: true,
elements: [
{
type: ElementType.Header,
Expand Down
2 changes: 0 additions & 2 deletions services/ui-src/src/types/report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export type ParentPageTemplate = {
type?: undefined;
elements?: undefined;
sidebar?: undefined;
subnavbar?: undefined;
hideNavButtons?: undefined;
};
export const isParentPage = (
Expand All @@ -73,7 +72,6 @@ export type FormPageTemplate = {
type: PageType;
elements: PageElement[];
sidebar?: boolean;
subnavbar?: boolean;
hideNavButtons?: boolean;
childPageIds?: PageId[];
};
Expand Down
2 changes: 0 additions & 2 deletions services/ui-src/src/types/states.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ export interface HcbsReportState {
currentPageId?: string;
modalOpen: boolean;
modalComponent?: React.ReactFragment;
lastSavedTime: string | undefined;
isReportPage: boolean;

// ACTIONS
setReport: (report?: Report) => void;
Expand Down
2 changes: 0 additions & 2 deletions services/ui-src/src/utils/state/useStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ const reportStore = (set: Function): HcbsReportState => ({
currentPageId: undefined,
modalOpen: false,
modalComponent: undefined,
lastSavedTime: undefined,
isReportPage: false,

// actions
setReport: (report: Report | undefined) =>
Expand Down

0 comments on commit 6642158

Please sign in to comment.