fix: restore color picker (#11095)

This commit is contained in:
Apoorv Mishra
2026-01-08 04:44:24 +05:30
committed by GitHub
parent ad975620b0
commit dd9c2a0cd8
+2 -2
View File
@@ -96,8 +96,8 @@ const StyledContent = styled(PopoverContent)`
padding: 8px;
`;
const ColorPicker = lazyWithRetry(
() => import("react-color/lib/components/chrome/Chrome")
const ColorPicker = lazyWithRetry(() =>
import("react-color").then((mod) => ({ default: mod.ChromePicker }))
);
const StyledColorPicker = styled(ColorPicker)`