[DE mobile] Correct opening snackbar
This commit is contained in:
parent
5c00b9fa57
commit
a83c32c793
|
@ -81,15 +81,15 @@ const Settings = props => {
|
||||||
}, 0);
|
}, 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onChangeMobileView = () => {
|
const onChangeMobileView = async () => {
|
||||||
const api = Common.EditorApi.get()
|
const api = Common.EditorApi.get();
|
||||||
const appOptions = props.storeAppOptions;
|
const appOptions = props.storeAppOptions;
|
||||||
|
|
||||||
appOptions.changeMobileView();
|
await appOptions.changeMobileView();
|
||||||
api.ChangeReaderMode();
|
await api.ChangeReaderMode();
|
||||||
|
|
||||||
if(Device.phone) {
|
if(Device.phone) {
|
||||||
closeModal();
|
await closeModal();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue