From 6d86ecaa383a9361b0baf4ede248de713b306184 Mon Sep 17 00:00:00 2001 From: Adrian Andersen Date: Tue, 20 Feb 2024 14:36:32 +0100 Subject: [PATCH] feat(RezervoClass): make room optional --- src/types/chain.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/chain.ts b/src/types/chain.ts index 4f7d253a..0e67adeb 100644 --- a/src/types/chain.ts +++ b/src/types/chain.ts @@ -59,7 +59,7 @@ export type RezervoClassBase = { location: { id: string; studio: string; - room: string; + room: string | null; }; isBookable: boolean; isCancelled: boolean;