Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
abelaba committed Jan 5, 2024
1 parent 53c8c16 commit c684922
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export default function WorkHistoryInstance(pastWorkplace: EmploymentType) {
{startDateString} - {endDateString}
</span>
</div>
<a href={websiteUrl} className={link}>{agencyName}</a>
<a href={websiteUrl} className={link}>
{agencyName}
</a>
{/*TODO: Get Phone number from officer data, mock data currently does not have*/}
<p className={address}>(123) 456-7890 * {agencyHqAddress}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/models/app-routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export enum AppRoutes {
PASSPORT = "/passport",
PROFILE = "/profile",
REGISTER = "/register",
OFFICER = "/officer",
OFFICER = "/officer"
}
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -68,4 +63,4 @@ const PageNavigator = (props: PageNavigatorProps) => {
}

export type { PageNavigatorProps }
export {PageNavigator }
export { PageNavigator }
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ export const OfficerIncidentResults = Template.bind({})
OfficerIncidentResults.args = {
columns: incidentResultsColumns,
data: getOfficerFromMockData(0).incidents
}
}

0 comments on commit c684922

Please sign in to comment.