Skip to content

Commit 3ffe9ec

Browse files
fix(universalLogin): return null instead of undefined to prevent render errors (#5969)
1 parent c549764 commit 3ffe9ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/onboarding/containers/LoginPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const LoginPage: FC = () => {
7373
})
7474
})
7575
.catch(error => console.error(error))
76-
return
76+
return null
7777
}
7878
}
7979
}

0 commit comments

Comments
 (0)