Phase2: Invoicecomputation/AdminpricingUI/Ainvoicemgnt
Some checks failed
Build and Push / build (push) Failing after 45s

This commit is contained in:
2026-05-24 14:12:26 +02:00
parent cdc2210eaf
commit d4fcc33bc1
4 changed files with 26 additions and 27 deletions

View File

@@ -73,7 +73,7 @@ export function InvoicesTable({ initialInvoices }: Props) {
>
{STATUS_FILTERS.map((s) => (
<option key={s} value={s}>
{s === "all" ? t("allStatuses") : t(`status_${s}` as any)}
{s === "all" ? t("allStatuses") : t(`status_${s}`)}
</option>
))}
</select>
@@ -177,7 +177,7 @@ function StatusPill({ status }: { status: InvoiceStatus }) {
<span
className={`inline-block px-2 py-0.5 rounded text-xs font-medium ${color}`}
>
{t(`status_${status}` as any)}
{t(`status_${status}`)}
</span>
);
}