Fix Web UI trying to save user settings when logged out (#30324)

This commit is contained in:
Claire 2024-05-16 15:01:01 +02:00
parent a8039dda13
commit 5cb36daa0f

View file

@ -20,7 +20,7 @@ export function changeSetting(path, value) {
}
const debouncedSave = debounce((dispatch, getState) => {
if (getState().getIn(['settings', 'saved'])) {
if (getState().getIn(['settings', 'saved']) || !getState().getIn(['meta', 'me'])) {
return;
}