From 0d50f0d60ac14b73c0a6e6e059fc7f4dd255534e Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 3 Jun 2026 23:24:32 -0400 Subject: [PATCH] fix: Do not close icon picker on choice (#12573) --- app/components/IconPicker/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/components/IconPicker/index.tsx b/app/components/IconPicker/index.tsx index 531187d786..00459e5c40 100644 --- a/app/components/IconPicker/index.tsx +++ b/app/components/IconPicker/index.tsx @@ -107,7 +107,6 @@ const IconPicker = ({ const handleIconChange = React.useCallback( (ic: string) => { - setOpen(false); const icType = determineIconType(ic); const finalColor = icType === IconType.SVG ? chosenColor : null; onChange(ic, finalColor);