@@ -29,13 +29,7 @@ import {
29
29
MetaMetricsEventName ,
30
30
} from '../../../../shared/constants/metametrics' ;
31
31
import { getHDEntropyIndex } from '../../../selectors/selectors' ;
32
- import {
33
- ONBOARDING_COMPLETION_ROUTE ,
34
- ONBOARDING_METAMETRICS ,
35
- } from '../../../helpers/constants/routes' ;
36
- import { PLATFORM_FIREFOX } from '../../../../shared/constants/app' ;
37
- // eslint-disable-next-line import/no-restricted-paths
38
- import { getPlatform } from '../../../../app/scripts/lib/util' ;
32
+ import { ONBOARDING_COMPLETION_ROUTE } from '../../../helpers/constants/routes' ;
39
33
import ConfirmSrpModal from './confirm-srp-modal' ;
40
34
import RecoveryPhraseChips from './recovery-phrase-chips' ;
41
35
@@ -119,9 +113,11 @@ export default function ConfirmRecoveryPhrase({ secretRecoveryPhrase = '' }) {
119
113
} ,
120
114
} ) ;
121
115
122
- getPlatform ( ) === PLATFORM_FIREFOX
123
- ? history . push ( ONBOARDING_COMPLETION_ROUTE )
124
- : history . push ( ONBOARDING_METAMETRICS ) ;
116
+ // getPlatform() === PLATFORM_FIREFOX
117
+ // ? history.push(ONBOARDING_COMPLETION_ROUTE)
118
+ // : history.push(ONBOARDING_METAMETRICS);
119
+ // SOCIAL: change metametrics flow on later PR
120
+ history . push ( ONBOARDING_COMPLETION_ROUTE ) ;
125
121
} , [ dispatch , hdEntropyIndex , history , trackEvent ] ) ;
126
122
127
123
return (
0 commit comments