File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/mobile-app/app/(drawer)/account/account-settings/export-account Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default function ExportAccount() {
11
11
const [ modalVisible , setModalVisible ] = useState ( false ) ;
12
12
const [ exportType , setExportType ] = useState < AccountFormat | null > ( null ) ;
13
13
const [ exportedContent , setExportedContent ] = useState < string | null > ( null ) ;
14
- const [ holdProgress , setHoldProgress ] = useState ( 2 ) ;
14
+ const [ holdProgress , setHoldProgress ] = useState ( 3 ) ;
15
15
const holdTimerRef = useRef < NodeJS . Timeout | null > ( null ) ;
16
16
const isHoldingRef = useRef ( false ) ;
17
17
@@ -33,7 +33,7 @@ export default function ExportAccount() {
33
33
const handleExport = async ( format : AccountFormat ) => {
34
34
setExportType ( format ) ;
35
35
setExportedContent ( null ) ;
36
- setHoldProgress ( 2 ) ;
36
+ setHoldProgress ( 3 ) ;
37
37
setModalVisible ( true ) ;
38
38
} ;
39
39
@@ -61,7 +61,7 @@ export default function ExportAccount() {
61
61
holdTimerRef . current = null ;
62
62
}
63
63
isHoldingRef . current = false ;
64
- setHoldProgress ( 2 ) ;
64
+ setHoldProgress ( 3 ) ;
65
65
} ;
66
66
67
67
const handleReveal = async ( ) => {
You can’t perform that action at this time.
0 commit comments