Skip to content

Commit 8a926da

Browse files
committed
style: fix prettier issues on AdminFinanceDashboard and FinanceDashboardTeamView
1 parent bdf0d34 commit 8a926da

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/frontend/src/pages/FinancePage/FinanceDashboard/AdminFinanceDashboard.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,11 @@ const AdminFinanceDashboard: React.FC<AdminFinanceDashboardProps> = ({ startDate
350350
/>
351351
)}
352352
{tabIndex === 0 ? (
353-
<FinanceDashboardAllView startDate={filter.startDate} endDate={filter.endDate} overrideCarId={filter.selectedCar?.id ?? null} />
353+
<FinanceDashboardAllView
354+
startDate={filter.startDate}
355+
endDate={filter.endDate}
356+
overrideCarId={filter.selectedCar?.id ?? null}
357+
/>
354358
) : tabIndex === tabs.length - 1 ? (
355359
<FinanceDashboardCategoriesView
356360
startDate={filter.startDate}

src/frontend/src/pages/FinancePage/FinanceDashboard/FinanceDashboardTeamView.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ interface FinanceDashboardTeamViewProps {
1212
overrideCarId?: string | null;
1313
}
1414

15-
const FinanceDashboardTeamView: React.FC<FinanceDashboardTeamViewProps> = ({ teamId, startDate, endDate, overrideCarId }) => {
15+
const FinanceDashboardTeamView: React.FC<FinanceDashboardTeamViewProps> = ({
16+
teamId,
17+
startDate,
18+
endDate,
19+
overrideCarId
20+
}) => {
1621
const {
1722
data: rrData,
1823
isLoading: rrDataIsLoading,

0 commit comments

Comments
 (0)