From 8907cc01460b2cfe6742a696fcfbad2d7cf9d4ce Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal Date: Wed, 19 Feb 2025 17:13:28 +0530 Subject: [PATCH] fix: sticky collapse icon --- web/core/components/stickies/sticky/root.tsx | 30 +++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/web/core/components/stickies/sticky/root.tsx b/web/core/components/stickies/sticky/root.tsx index 7a0957a2b09..170440405e6 100644 --- a/web/core/components/stickies/sticky/root.tsx +++ b/web/core/components/stickies/sticky/root.tsx @@ -81,23 +81,25 @@ export const StickyNote = observer((props: TProps) => { > {/* {isStickiesPage && }{" "} */} {onClose && ( - )} {/* inputs */} - { - handleLayout?.(); - debouncedFormSave(payload); - }} - stickyId={stickyId} - handleDelete={() => setIsDeleteModalOpen(true)} - handleChange={handleChange} - showToolbar={showToolbar} - /> +
+ { + handleLayout?.(); + debouncedFormSave(payload); + }} + stickyId={stickyId} + handleDelete={() => setIsDeleteModalOpen(true)} + handleChange={handleChange} + showToolbar={showToolbar} + /> +
);