From 8f8bb1fccb0c382286b9e6d8f34b858380d1a2ea Mon Sep 17 00:00:00 2001 From: axolotle Date: Fri, 9 Feb 2024 13:33:41 +0100 Subject: [PATCH] chore: lint --- app/src/store/info.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) }