From b3a5525f067fc743b598a07cb2bf07cbfde822ec Mon Sep 17 00:00:00 2001 From: Hassan El Mghari Date: Thu, 9 Mar 2023 23:36:09 -0500 Subject: [PATCH] adding kitchen type --- utils/dropdownTypes.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/dropdownTypes.ts b/utils/dropdownTypes.ts index b17bf1d5..78f12280 100644 --- a/utils/dropdownTypes.ts +++ b/utils/dropdownTypes.ts @@ -11,6 +11,7 @@ export type roomType = | "Bedroom" | "Bathroom" | "Office" + | "Kitchen" | "Gaming Room"; export const themes: themeType[] = [ @@ -27,4 +28,5 @@ export const rooms: roomType[] = [ "Bedroom", "Bathroom", "Gaming Room", + "Kitchen", ];