From 318a17b9be1f6a047e6a4ef215ec5e03997d2dea Mon Sep 17 00:00:00 2001 From: moist-webDev Date: Wed, 21 Jun 2023 21:49:56 -0400 Subject: [PATCH] removed uneeded test table --- lib/client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client.ts b/lib/client.ts index 14ec364..9c3df07 100644 --- a/lib/client.ts +++ b/lib/client.ts @@ -1,5 +1,5 @@ import nasa from './nasa'; -import { MovieSchema, ShowSchema, TestTableShema, OtherSchema, CategorySchema} from './schemas'; +import { MovieSchema, ShowSchema, TestTableShema, OtherSchema, CategorySchema, SettingSchema} from './schemas'; const tableSchemas = { @@ -7,7 +7,7 @@ const tableSchemas = { shows: ShowSchema, others: OtherSchema, categories: CategorySchema, - test: TestTableShema, + settings: SettingSchema , }