mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 19:01:47 +00:00
fix: corrige tipagem compartilhada e compatibilidade do typecheck
This commit is contained in:
@@ -387,7 +387,7 @@ export function CategoryHistoryWidget({ data }: CategoryHistoryWidgetProps) {
|
||||
|
||||
return (
|
||||
<div
|
||||
key={entry.dataKey}
|
||||
key={String(entry.dataKey ?? entry.name)}
|
||||
className="flex items-center justify-between gap-4"
|
||||
>
|
||||
<div className="flex items-center gap-2">
|
||||
|
||||
@@ -91,7 +91,7 @@ export function IncomeExpenseBalanceWidget({
|
||||
|
||||
return (
|
||||
<div
|
||||
key={entry.dataKey}
|
||||
key={String(entry.dataKey ?? entry.name)}
|
||||
className="flex items-center gap-2"
|
||||
>
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user