Compare commits

..

2 Commits

2 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import React, { useState } from "react";
import { Link, useNavigate } from "react-router-dom";
import { useFormValidation } from "@hooks/useFormValidation";
import { useNotification } from "@hooks/useNotification";
@ -17,6 +18,7 @@ import "./modalRegistration.scss";
export const ModalRegistration = ({ active, setActive }) => {
const [loader, setLoader] = useState(false);
const [isPartner, setIsPartner] = useState(false);
const navigate = useNavigate();
const fields = {
username: "",
@ -145,6 +147,7 @@ export const ModalRegistration = ({ active, setActive }) => {
onClick={async (e) => {
e.preventDefault();
await handleSubmit(e);
navigate("/welcome-page");
}}
styles="button-box__submit"
>

View File

@ -1,4 +1,5 @@
import React, { useState } from "react";
import { useNavigate } from "react-router";
import { AuthHeader } from "@components/Common/AuthHeader/AuthHeader";
import BaseButton from "@components/Common/BaseButton/BaseButton";
@ -12,6 +13,7 @@ import "./welcomePage.scss";
export const WelcomePage = () => {
const [loader, setLoader] = useState(false);
const navigate = useNavigate();
return (
<div className="welcome-page">
@ -39,6 +41,7 @@ export const WelcomePage = () => {
<BaseButton
onClick={() => {
setLoader(true);
navigate("/profile");
}}
styles="button-box__submit"
>