diff --git a/app/src/store/info.js b/app/src/store/info.js index 2c81e5acd..6e0d6dc38 100644 --- a/app/src/store/info.js +++ b/app/src/store/info.js @@ -111,7 +111,7 @@ export default { }, actions: { - async 'ON_APP_CREATED' ({ dispatch, state, }) { + async 'ON_APP_CREATED' ({ dispatch, state }) { await dispatch('CHECK_INSTALL') if (!state.installed) { @@ -129,7 +129,7 @@ export default { const { installed } = await timeout(api.get('installed'), 5000) commit('SET_INSTALLED', installed) return installed - } catch(err) { + } catch (err) { if (retry > 0) { return dispatch('CHECK_INSTALL', --retry) }