From 8cfebbec69011889cc560a7ba151cfc25bef98e6 Mon Sep 17 00:00:00 2001
From: "gpt-engineer-app[bot]"
<159125892+gpt-engineer-app[bot]@users.noreply.github.com>
Date: Sun, 19 Apr 2026 15:46:14 +0000
Subject: [PATCH] Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
---
src/routes/settings.fees.tsx | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/routes/settings.fees.tsx b/src/routes/settings.fees.tsx
index e0247aa..3c8267a 100644
--- a/src/routes/settings.fees.tsx
+++ b/src/routes/settings.fees.tsx
@@ -203,11 +203,13 @@ function FeeSection({
{formatCurrency(Number(i.amount))}
- {unit && (
-
- {unit}
-
- )}
+ {(() => {
+ const isHourly = i.category === "time" && i.pricing_type !== "flat";
+ const u = isHourly ? "/ hr" : i.category === "time" ? " flat" : unit;
+ return u ? (
+ {u}
+ ) : null;
+ })()}
{i.billable ? (