diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2022-11-02 11:08:39 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-11-02 20:03:01 +0000 |
commit | 2ab6fc273ecbf405f7c126fab11ddc0b9bf516da (patch) | |
tree | a6e005b4f57fb488d3e551b7df52399e69b0674c /server/sonar-web/src/main/js/app/index.ts | |
parent | 60e4b88e4567c1af3051b6cdc4c8858f8b0fca21 (diff) | |
download | sonarqube-2ab6fc273ecbf405f7c126fab11ddc0b9bf516da.tar.gz sonarqube-2ab6fc273ecbf405f7c126fab11ddc0b9bf516da.zip |
SONAR-13368 Bump to prettier@2.7.1
Diffstat (limited to 'server/sonar-web/src/main/js/app/index.ts')
-rw-r--r-- | server/sonar-web/src/main/js/app/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/app/index.ts b/server/sonar-web/src/main/js/app/index.ts index 02c1cb1ffa0..de93d485559 100644 --- a/server/sonar-web/src/main/js/app/index.ts +++ b/server/sonar-web/src/main/js/app/index.ts @@ -34,14 +34,14 @@ async function initApplication() { loadL10nBundle(), isMainApp() ? getCurrentUser() : undefined, isMainApp() ? getGlobalNavigation() : undefined, - isMainApp() ? getAvailableFeatures() : undefined - ]).catch(error => { + isMainApp() ? getAvailableFeatures() : undefined, + ]).catch((error) => { // eslint-disable-next-line no-console console.error('Application failed to start', error); throw error; }); - const startReactApp = await import('./utils/startReactApp').then(i => i.default); + const startReactApp = await import('./utils/startReactApp').then((i) => i.default); startReactApp(l10nBundle.locale, currentUser, appState, availableFeatures); } |