diff --git a/src/components/@types/global.ts b/src/components/@types/global.ts
index a96bd3cd..a026186b 100644
--- a/src/components/@types/global.ts
+++ b/src/components/@types/global.ts
@@ -51,7 +51,7 @@ export interface ScrollerStep {
/** Datum type for data that goes into the Table component */
type TableDatum = {
- [key: string]: string | number | boolean | undefined | null;
+ [key: string]: unknown;
searchStr?: string;
};
export type TableData = TableDatum[];
diff --git a/src/components/Table/Table.svelte b/src/components/Table/Table.svelte
index 10c068e9..63ed7296 100644
--- a/src/components/Table/Table.svelte
+++ b/src/components/Table/Table.svelte
@@ -2,9 +2,9 @@