Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 00:48:54 +00:00
co-authored by renee-png
parent 547367386b
commit 03c1c2b0ad
3 changed files with 2 additions and 11 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ export function CaseExpensesTab({ caseId }: { caseId: string }) {
...f,
amount: String(fee.amount),
billable: fee.billable,
description: f.description || fee.description || fee.name,
description: fee.description || fee.name,
}));
}
}}
+1 -1
View File
@@ -177,7 +177,7 @@ export function CaseTimeTab({ caseRecord, onInvoice }: CaseTimeTabProps) {
...f,
hourly_rate: String(fee.amount),
billable: fee.billable,
description: f.description || fee.description || fee.name,
description: fee.description || fee.name,
}));
}
}}
-9
View File
@@ -952,12 +952,3 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
import type { getRouter } from './router.tsx'
import type { createStart } from '@tanstack/react-start'
declare module '@tanstack/react-start' {
interface Register {
ssr: true
router: Awaited<ReturnType<typeof getRouter>>
}
}