diff --git a/src/app/services/Repositorys/chat/data-source/room/rooom-local-data-source.service.ts b/src/app/services/Repositorys/chat/data-source/room/rooom-local-data-source.service.ts index 63f7b4433..9b3b29d17 100644 --- a/src/app/services/Repositorys/chat/data-source/room/rooom-local-data-source.service.ts +++ b/src/app/services/Repositorys/chat/data-source/room/rooom-local-data-source.service.ts @@ -17,11 +17,11 @@ const tableSchema = z.object({ expirationDate: z.any(), roomType: z.any() }) -export type Table = z.infer +export type TableRoom = z.infer // Database declaration (move this to its own module also) export const roomDataSource = new Dexie('FriendDatabase') as Dexie & { - room: EntityTable; + room: EntityTable; }; roomDataSource.version(1).stores({