diff --git a/frontend/compositions/officer-view/officer-work-history/work-history-instance/index.tsx b/frontend/compositions/officer-view/officer-work-history/work-history-instance/index.tsx index 625b5719a..367f0be01 100644 --- a/frontend/compositions/officer-view/officer-work-history/work-history-instance/index.tsx +++ b/frontend/compositions/officer-view/officer-work-history/work-history-instance/index.tsx @@ -20,7 +20,9 @@ export default function WorkHistoryInstance(pastWorkplace: EmploymentType) { {startDateString} - {endDateString} - {agencyName} + + {agencyName} + {/*TODO: Get Phone number from officer data, mock data currently does not have*/}
(123) 456-7890 * {agencyHqAddress}
diff --git a/frontend/models/app-routes.tsx b/frontend/models/app-routes.tsx index 107917202..322cb5275 100644 --- a/frontend/models/app-routes.tsx +++ b/frontend/models/app-routes.tsx @@ -7,5 +7,5 @@ export enum AppRoutes { PASSPORT = "/passport", PROFILE = "/profile", REGISTER = "/register", - OFFICER = "/officer", + OFFICER = "/officer" } diff --git a/frontend/shared-components/officer-incident-data-table/officer-incident-data-table-subcomps.tsx b/frontend/shared-components/officer-incident-data-table/officer-incident-data-table-subcomps.tsx index eb3e4862c..030290303 100644 --- a/frontend/shared-components/officer-incident-data-table/officer-incident-data-table-subcomps.tsx +++ b/frontend/shared-components/officer-incident-data-table/officer-incident-data-table-subcomps.tsx @@ -1,12 +1,7 @@ -import { - faAngleLeft, - faAngleRight, - IconDefinition -} from "@fortawesome/free-solid-svg-icons" +import { faAngleLeft, faAngleRight, IconDefinition } from "@fortawesome/free-solid-svg-icons" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" import styles from "./officer-incident-data-table.module.css" - type PageButtonProps = { icon: IconDefinition onclick: () => void @@ -68,4 +63,4 @@ const PageNavigator = (props: PageNavigatorProps) => { } export type { PageNavigatorProps } -export {PageNavigator } +export { PageNavigator } diff --git a/frontend/shared-components/officer-incident-data-table/officer-incident-data-table.stories.tsx b/frontend/shared-components/officer-incident-data-table/officer-incident-data-table.stories.tsx index 443d365d9..753df3e3b 100644 --- a/frontend/shared-components/officer-incident-data-table/officer-incident-data-table.stories.tsx +++ b/frontend/shared-components/officer-incident-data-table/officer-incident-data-table.stories.tsx @@ -18,4 +18,4 @@ export const OfficerIncidentResults = Template.bind({}) OfficerIncidentResults.args = { columns: incidentResultsColumns, data: getOfficerFromMockData(0).incidents -} \ No newline at end of file +}