From 02ff4c56577e173540e3fea44eb0f61bbb5d325c Mon Sep 17 00:00:00 2001 From: ManishMadan2882 Date: Wed, 28 May 2025 03:29:48 +0530 Subject: [PATCH] (fix:menu) larger strings break --- frontend/src/components/ContextMenu.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/ContextMenu.tsx b/frontend/src/components/ContextMenu.tsx index 762a7828..eef2217c 100644 --- a/frontend/src/components/ContextMenu.tsx +++ b/frontend/src/components/ContextMenu.tsx @@ -90,7 +90,7 @@ export default function ContextMenu({ onClick={(e) => e.stopPropagation()} >
{options.map((option, index) => ( @@ -109,7 +109,7 @@ export default function ContextMenu({ } `} > {option.icon && ( -
+
)} - {option.label} + {option.label} ))}