Navigate to user verification after accepting terms and conditions

This commit is contained in:
Shreerang Kale
2024-07-26 16:39:19 +05:30
committed by Adw8
parent b0456fa16a
commit eb1595af0f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -19,11 +19,11 @@ function App() {
<WalletConnectProvider>
<Routes>
<Route path="/" element={<TermsAndConditions />} />
<Route path="/connect-wallet" element={<ConnectWallet />} />
<Route
path="/user-verification"
element={<UserVerification />}
/>
<Route path="/connect-wallet" element={<ConnectWallet />} />
<Route element={<SignPageLayout />}>
<Route path="/sign-with-nitro-key/:userId" element={<SignWithNitroKey />} />
<Route
+1 -1
View File
@@ -6,7 +6,7 @@ const TermsAndConditions: React.FC = () => {
const navigate = useNavigate();
const handleAccept = () => {
navigate('/connect-wallet');
navigate('/user-verification');
};
return (