fix: set customised logo to undefined when empty

This commit is contained in:
Viren070
2025-07-11 13:07:17 +01:00
parent 8314cae481
commit 7d0b60efa1
@@ -399,7 +399,7 @@ function CustomizeModal({
};
const handleLogoChange = (value: string) => {
setLogo(value);
setLogo(value.trim() || undefined);
};
return (