Refactor useEffect

This commit is contained in:
Adw8 2024-08-09 15:23:09 +05:30
parent eb9896df87
commit 57e2c0c628
4 changed files with 19 additions and 16 deletions

View File

@ -41,15 +41,15 @@ function App() {
<Route
path="/onboarding-success"
element={<OnboardingSuccess />}
></Route>
/>
<Route
path="/validator"
element={<Validator />}
></Route>
/>
<Route
path="/validator-success"
element={<ValidatorSuccess />}
></Route>
/>
</Route>
<Route path="*" element={<PageNotFound />} />
</Routes>

View File

@ -16,6 +16,7 @@ const TermsAndConditionsBox = ({ height, onLoad }: TermsAndConditionsBoxProps )
function onDocumentLoadSuccess({ numPages }: { numPages: number }): void {
setNumPages(numPages);
if (onLoad){
onLoad();
};

View File

@ -22,19 +22,21 @@ const ConnectWallet = () => {
}, [checkPersistedState, signClient, session]);
useEffect(() => {
if (session) {
if (!session) {
return;
}
if (redirectTo) {
navigate(`/${redirectTo}`, {
state: location.state
});
}
else {
navigate("/sign-with-nitro-key", {
state: location.state
});
}
}
}, [session, navigate, redirectTo, location.state]);
const handler = async () => {