File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
infrastructure/eid-wallet/src/routes/(app)/scan-qr
platforms/blabsy/src/pages Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ export function createScanLogic({
251251 console . log ( `⚠️ Using keyId: ${ KEY_ID } (NOT ${ vault . ename } )` ) ;
252252 console . log ( `⚠️ Using context: ${ signingContext } (NOT "signing")` ) ;
253253 console . log (
254- ` ⚠️ This ensures we use the SAME key that was synced to eVault` ,
254+ " ⚠️ This ensures we use the SAME key that was synced to eVault" ,
255255 ) ;
256256 console . log ( "=" . repeat ( 70 ) ) ;
257257
@@ -589,7 +589,7 @@ export function createScanLogic({
589589 console . log ( `⚠️ Using keyId: ${ KEY_ID } (NOT ${ vault . ename } )` ) ;
590590 console . log ( `⚠️ Using context: ${ signingContext } (NOT "signing")` ) ;
591591 console . log (
592- ` ⚠️ This ensures we use the SAME key that was synced to eVault` ,
592+ " ⚠️ This ensures we use the SAME key that was synced to eVault" ,
593593 ) ;
594594 console . log ( "=" . repeat ( 70 ) ) ;
595595
Original file line number Diff line number Diff line change 33import { useEffect , useState } from 'react' ;
44import { useAuth } from '@lib/context/auth-context' ;
55
6- export default function DeeplinkLogin ( ) : JSX . Element {
6+ export default function DeeplinkLogin ( ) : JSX . Element | null {
77 const { signInWithCustomToken } = useAuth ( ) ;
88 const [ isLoading , setIsLoading ] = useState ( true ) ;
99 const [ error , setError ] = useState < string | null > ( null ) ;
You can’t perform that action at this time.
0 commit comments