Navigate to user verification after accepting terms and conditions
This commit is contained in:
parent
b0456fa16a
commit
eb1595af0f
@ -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
|
||||
|
@ -6,7 +6,7 @@ const TermsAndConditions: React.FC = () => {
|
||||
const navigate = useNavigate();
|
||||
|
||||
const handleAccept = () => {
|
||||
navigate('/connect-wallet');
|
||||
navigate('/user-verification');
|
||||
};
|
||||
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user