use platformUtilsService.isDev instead of process.env.ENV

This commit is contained in:
Jonathan Prusik 2024-04-25 17:12:42 -04:00
parent 54eb4885e1
commit a5ad899fcb
No known key found for this signature in database
GPG Key ID: 83CF2DF735A5EC35
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ export default class RuntimeBackground {
if (this.onInstalledReason != null) {
if (this.onInstalledReason === "install") {
if (process.env.ENV !== "development") {
if (!this.platformUtilsService.isDev()) {
void BrowserApi.createNewTab("https://bitwarden.com/browser-start/");
}