diff --git a/packages/pl-fe/src/features/preferences/index.tsx b/packages/pl-fe/src/features/preferences/index.tsx index 964e9c831..2cc35f3db 100644 --- a/packages/pl-fe/src/features/preferences/index.tsx +++ b/packages/pl-fe/src/features/preferences/index.tsx @@ -127,7 +127,7 @@ const Preferences = () => { }; const onBrandColorChange = (newBrandColor: string) => { - if (!settings.theme?.brandColor && newBrandColor === brandColor) return; + if (newBrandColor === brandColor) return; dispatch(changeSetting(['theme', 'brandColor'], newBrandColor, { showAlert: true, save: false })); debouncedSave(dispatch);