File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -171,8 +171,6 @@ chrome.alarms.onAlarm.addListener(async (alarm) => {
171171
172172// INSTALLS / UPDATES
173173chrome . runtime . onInstalled . addListener ( async ( details ) => {
174- chrome . tabs . create ( { url : 'https://dashboard.walletguard.app' } ) ;
175-
176174 if ( details . reason === 'install' ) {
177175 // TODO: Signin Anonymously
178176 } else if ( details . reason === 'update' ) {
@@ -208,9 +206,9 @@ chrome.runtime.onInstalled.addListener(async (details) => {
208206
209207 // await checkAllWalletsAndCreateAlerts();
210208
211- // if (process.env.NODE_ENV === 'production' && details.reason === 'install') {
212- // openDashboard('install');
213- // }
209+ if ( process . env . NODE_ENV === 'production' && details . reason === 'install' ) {
210+ openDashboard ( 'install' ) ;
211+ }
214212
215213 // Create a context menu item
216214 // chrome.contextMenus.create({
You can’t perform that action at this time.
0 commit comments