@@ -14,10 +14,10 @@ import {
1414 useSnapPoints ,
1515} from '../../hooks/bottomSheet' ;
1616import { closeSheet } from '../../store/slices/ui' ;
17- import { updateUser } from '../../store/slices/user ' ;
17+ import { updateSettings } from '../../store/slices/settings ' ;
1818import { showBottomSheet } from '../../store/utils/ui' ;
1919import { viewControllersSelector } from '../../store/reselect/ui' ;
20- import { quickpayIntroSeenSelector } from '../../store/reselect/user ' ;
20+ import { quickpayIntroSeenSelector } from '../../store/reselect/settings ' ;
2121import { RootNavigationProp } from '../types' ;
2222
2323const imageSrc = require ( '../../assets/illustrations/fast-forward.png' ) ;
@@ -72,12 +72,12 @@ const QuickPayPrompt = ({ enabled }: { enabled: boolean }): ReactElement => {
7272
7373 const onMore = ( ) : void => {
7474 navigation . navigate ( 'Settings' , { screen : 'QuickpaySettings' } ) ;
75- dispatch ( updateUser ( { quickpayIntroSeen : true } ) ) ;
75+ dispatch ( updateSettings ( { quickpayIntroSeen : true } ) ) ;
7676 dispatch ( closeSheet ( 'quickPay' ) ) ;
7777 } ;
7878
7979 const onDismiss = ( ) : void => {
80- dispatch ( updateUser ( { quickpayIntroSeen : true } ) ) ;
80+ dispatch ( updateSettings ( { quickpayIntroSeen : true } ) ) ;
8181 dispatch ( closeSheet ( 'quickPay' ) ) ;
8282 } ;
8383
@@ -86,7 +86,7 @@ const QuickPayPrompt = ({ enabled }: { enabled: boolean }): ReactElement => {
8686 view = "quickPay"
8787 snapPoints = { snapPoints }
8888 onClose = { ( ) : void => {
89- dispatch ( updateUser ( { quickpayIntroSeen : true } ) ) ;
89+ dispatch ( updateSettings ( { quickpayIntroSeen : true } ) ) ;
9090 } } >
9191 < BottomSheetScreen
9292 navTitle = { t ( 'quickpay.nav_title' ) }
0 commit comments