Merge branch 'sync/ce-ee' of github.com:makeplane/plane-ee into develop

This commit is contained in:
sriram veeraghanta
2024-03-26 16:35:02 +05:30

View File

@@ -144,7 +144,7 @@ export const ImagePickerPopover: React.FC<Props> = observer((props) => {
useEffect(() => {
if (!unsplashImages || value !== null) return;
onChange(unsplashImages[0].urls.regular);
onChange(unsplashImages[0]?.urls.regular);
}, [value, onChange, unsplashImages]);
const handleClose = () => {