Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 15:47:29 +00:00
co-authored by renee-png
parent b37c52750c
commit dbc02db959
+4 -1
View File
@@ -258,7 +258,10 @@ export function HeaderTimer() {
{feeItems.map((f) => (
<SelectItem key={f.id} value={f.id}>
<span className="mr-2">{f.name}</span>
<span className="text-muted-foreground">{formatCurrency(f.amount)}/hr</span>
<span className="text-muted-foreground">
{formatCurrency(f.amount)}
{f.pricing_type === "flat" ? " flat" : "/hr"}
</span>
</SelectItem>
))}
</SelectContent>