File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { createRoot } from 'react-dom/client';
99import { Provider } from 'react-redux' ;
1010import invariant from 'tiny-invariant' ;
1111import Browser from 'webextension-polyfill' ;
12- import { onEnd , pipe } from 'wonka' ;
12+ import { onEnd , pipe , publish } from 'wonka' ;
1313
1414import { createAccountsStore } from './accounts/store/create' ;
1515import { createUpdateState } from './accounts/updateState' ;
@@ -103,7 +103,8 @@ Promise.all([
103103 port = null ;
104104 Background . init ( connect ( ) ) ;
105105 } ) ;
106- } )
106+ } ) ,
107+ publish
107108 ) ;
108109
109110 return createIpcCallProxy < keyof BackgroundUiApi , BackgroundUiApi > (
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { createRoot } from 'react-dom/client';
99import { Provider } from 'react-redux' ;
1010import invariant from 'tiny-invariant' ;
1111import Browser from 'webextension-polyfill' ;
12- import { onEnd , pipe } from 'wonka' ;
12+ import { onEnd , pipe , publish } from 'wonka' ;
1313
1414import { SignProvider } from './_core/signContext' ;
1515import { UsdPricesProvider } from './_core/usdPrices' ;
@@ -115,7 +115,8 @@ Promise.all([
115115 port = null ;
116116 Background . init ( connect ( ) ) ;
117117 } ) ;
118- } )
118+ } ) ,
119+ publish
119120 ) ;
120121
121122 return createIpcCallProxy < keyof BackgroundUiApi , BackgroundUiApi > (
You can’t perform that action at this time.
0 commit comments