44  MIGRATION_KEY , 
55  MigrationState , 
66  DISMISS_MIGRATION_UNTIL , 
7-   IS_HAVING_ISSUES , 
87}  from  '../../../api/migration-tool/migrator/migration-state.data' ; 
98import  {  MigrationView  }  from  './migration-view/migration-view.component' ; 
109import  { 
@@ -39,7 +38,6 @@ export const AppWithMigration = () => {
3938
4039  useEffect ( ( )  =>  { 
4140    storage . local . get ( ) . then ( ( store )  =>  { 
42-       console . log ( store [ IS_HAVING_ISSUES ] ) ; 
4341      // Wait for Lace installation check before declaring UI to be ready 
4442      checkLaceInstallation ( ) . then ( ( laceInstalled )  =>  { 
4543        // Check if the wallet exists 
@@ -51,7 +49,6 @@ export const AppWithMigration = () => {
5149            migrationState : store [ MIGRATION_KEY ]  ??  MigrationState . None , 
5250            hasWallet : typeof  accounts  !==  'undefined' , 
5351            dismissedUntil : store [ DISMISS_MIGRATION_UNTIL ]  ??  undefined , 
54-             isHavingIssues : store [ IS_HAVING_ISSUES ]  ??  false , 
5552          } ) ) ; 
5653          // Capture events for initial migration state when Nami is opened 
5754          switch  ( store [ MIGRATION_KEY ] )  { 
@@ -79,7 +76,6 @@ export const AppWithMigration = () => {
7976        migrationState : changes [ MIGRATION_KEY ] ?. newValue  ??  s . migrationState , 
8077        dismissedUntil :
8178          changes [ DISMISS_MIGRATION_UNTIL ] ?. newValue  ??  s . dismissedUntil , 
82-         isHavingIssues : changes [ IS_HAVING_ISSUES ]  ??  false , 
8379      } ) ) ; 
8480    } ; 
8581
@@ -102,16 +98,7 @@ export const AppWithMigration = () => {
10298      isBetaProgramIsActive  && 
10399      featureFlags ?. [ 'is-migration-active' ]  !==  undefined ; 
104100
105-     const  hasShowIssuesButton  = 
106-       featureFlags ?. [ 'show-having-issues-button' ]  ||  false ; 
107- 
108-     if  ( 
109-       state . migrationState  ===  MigrationState . Completed  && 
110-       hasShowIssuesButton  && 
111-       state . isHavingIssues 
112-     )  { 
113-       showApp  =  true ; 
114-     }  else  if  ( state . migrationState  ===  MigrationState . Completed )  { 
101+     if  ( state . migrationState  ===  MigrationState . Completed )  { 
115102      showApp  =  false ; 
116103    }  else  if  ( isBetaProgramActiveAndUserEnrolled )  { 
117104      // Canary phase entry 
0 commit comments