Add terms and conditions page and update cosmos tx message #2

Merged
nabarun merged 7 commits from sk-add-terms-and-conditions into kyc-integration 2024-07-26 08:33:52 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 723d51db0d - Show all commits

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

View File

@ -6,7 +6,7 @@ const TermsAndConditions: React.FC = () => {
const navigate = useNavigate();
const handleAccept = () => {
navigate('/connect-wallet');
navigate('/user-verification');
};
return (