We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 571b1e7 commit a786790Copy full SHA for a786790
1 file changed
src/components/AuthorizerTOTPScanner.tsx
@@ -28,17 +28,20 @@ export const AuthorizerTOTPScanner: FC<{
28
const handleContinue = () => {
29
setIsOTPScreenVisisble(true);
30
};
31
+ console.log({ isOTPScreenVisisble });
32
33
if (isOTPScreenVisisble) {
- <AuthorizerVerifyOtp
34
- {...{
35
- setView,
36
- onLogin,
37
- email,
38
- phone_number,
39
- urlProps,
40
- }}
41
- />;
+ return (
+ <AuthorizerVerifyOtp
+ {...{
+ setView,
+ onLogin,
+ email,
+ phone_number,
+ urlProps,
42
+ }}
43
+ />
44
+ );
45
}
46
47
return (
0 commit comments