refactor: rename block > group in UI elements

This commit is contained in:
Carlos Valente
2025-07-07 18:30:18 +02:00
committed by Carlos Valente
parent a98c14406d
commit 8728c1450b
10 changed files with 23 additions and 23 deletions
@@ -23,7 +23,7 @@ function MakeStart({ getValue, row, table }: CellContext<OntimeEntry, unknown>)
const event = row.original;
if (!isOntimeEvent(event)) {
return <MutedText numeric>{formatTime(getValue() as number)}</MutedText>;
return <MutedText numeric>{formatTime(getValue() as number, formatOpts)}</MutedText>;
}
const { handleUpdateTimer } = table.options.meta;