From 6876205d39eb86c48143d851f93f91cf4e63497a Mon Sep 17 00:00:00 2001 From: Akalanka Perera Date: Mon, 26 Feb 2024 22:32:43 +0530 Subject: [PATCH] Patch: added workspace min height --- src/components/index.tsx | 2 +- src/components/workspace/elements/booth.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/index.tsx b/src/components/index.tsx index bd83353..4db3112 100644 --- a/src/components/index.tsx +++ b/src/components/index.tsx @@ -30,7 +30,7 @@ const Designer: React.FC = (props) => { const User: React.FC = (props) => { return ( -
+
); diff --git a/src/components/workspace/elements/booth.jsx b/src/components/workspace/elements/booth.jsx index 3897484..b6172f4 100644 --- a/src/components/workspace/elements/booth.jsx +++ b/src/components/workspace/elements/booth.jsx @@ -2,7 +2,7 @@ import { forwardRef } from "react"; export const boothSize = 39; -const Booth = forwardRef(({ x, y, id, ...props }, ref) => { +const Booth = forwardRef(({ id, x, y, ...props }, ref) => { return ; });