diff --git a/src/components/timer/header-timer.tsx b/src/components/timer/header-timer.tsx index 8b93ed5..f789e0b 100644 --- a/src/components/timer/header-timer.tsx +++ b/src/components/timer/header-timer.tsx @@ -279,9 +279,15 @@ export function HeaderTimer() {
-
Rate
+
+ {isFlatFee ? "Flat fee" : "Rate"} +
- {effectiveRate ? `${formatCurrency(effectiveRate)}/hr` : "—"} + {effectiveRate + ? isFlatFee + ? formatCurrency(effectiveRate) + : `${formatCurrency(effectiveRate)}/hr` + : "—"}
{selectedFee @@ -300,17 +306,24 @@ export function HeaderTimer() {

- Time saves rounded up to the nearest 1/10 hour (6 minutes). + {isFlatFee + ? "Flat fee items save at the fixed amount regardless of elapsed time." + : "Time saves rounded up to the nearest 1/10 hour (6 minutes)."}