From dd11ebf335a9507f0d2665564e44be1827cc634f Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Wed, 19 Feb 2025 17:29:45 +0530 Subject: [PATCH] fix: sticky collapse icon (#6647) --- 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 7a0957a2b0..170440405e 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} + /> +
);