aboutsummaryrefslogtreecommitdiff
path: root/ext/js/data/options-util.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/data/options-util.js')
-rw-r--r--ext/js/data/options-util.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js
index 7952eafc..8ef52972 100644
--- a/ext/js/data/options-util.js
+++ b/ext/js/data/options-util.js
@@ -1095,9 +1095,9 @@ export class OptionsUtil {
}
if (customTemplates && isObject(chrome.storage)) {
- chrome.storage.session.set({needsCustomTemplatesWarning: true});
+ void chrome.storage.session.set({needsCustomTemplatesWarning: true});
await this._createTab(chrome.runtime.getURL('/welcome.html'));
- chrome.storage.session.set({openedWelcomePage: true});
+ void chrome.storage.session.set({openedWelcomePage: true});
}
}