Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Axolotle committed Feb 9, 2024
1 parent 613cdaf commit 8f8bb1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/store/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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)
}
Expand Down

0 comments on commit 8f8bb1f

Please sign in to comment.