mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use Record type in rows in TableProps
This commit is contained in:
parent
35b4e07d16
commit
f5780bd4e6
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ export function Table(props: TableProps): JSX.Element {
|
|||
},
|
||||
}}
|
||||
>
|
||||
{props.rows.get(key)?.map((cell, index) => (
|
||||
{Object.values(props.rows.get(key) || {}).map((cell, index) => (
|
||||
<HStack
|
||||
key={index}
|
||||
css={{
|
||||
|
|
|
|||
Loading…
Reference in a new issue