1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-14 23:33:19 +00:00

dont await void methods

This commit is contained in:
Kyle Spearrin
2018-10-04 12:05:47 -04:00
parent 44180f95a5
commit 076b320e70
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 6b3dc2344f...1f36c5fee6

View File

@@ -83,7 +83,7 @@ export function initFactory(): Function {
return async () => {
await environmentService.setUrlsFromStorage();
await i18nService.init();
await authService.init();
authService.init();
const htmlEl = window.document.documentElement;
htmlEl.classList.add('os_' + platformUtilsService.getDeviceString());
htmlEl.classList.add('locale_' + i18nService.translationLocale);