diff --git a/src/components/Main.tsx b/src/components/Main.tsx index 6ae7415..d26b87b 100644 --- a/src/components/Main.tsx +++ b/src/components/Main.tsx @@ -246,7 +246,7 @@ function ObservationTableView({ table }: ObservationTableViewProps) { {separators.map((separator) => ( - + {JSON.stringify(separator)} ))} @@ -259,10 +259,15 @@ function ObservationTableView({ table }: ObservationTableViewProps) { key={state} className={`my-2${index < states.size - 1 ? " border-b" : " border-gray-900 border-b-2"}`} > - {JSON.stringify(state)} + + {JSON.stringify(state)} + {row.map((value, index) => ( - // biome-ignore lint/suspicious/noArrayIndexKey: - + {value ? : } ))} @@ -271,11 +276,19 @@ function ObservationTableView({ table }: ObservationTableViewProps) { })} {Array.from(extensions).map(([extension, row], index) => { return ( - - {JSON.stringify(extension)} + + + {JSON.stringify(extension)} + {row.map((value, index) => ( - // biome-ignore lint/suspicious/noArrayIndexKey: - + {value ? : } ))}