From 7627b13cc86e91eaf05b8df79288f58dab0241e7 Mon Sep 17 00:00:00 2001 From: Vikas Nale Date: Sat, 19 Apr 2025 12:51:19 +0530 Subject: [PATCH] spell mistake --- src/pages/authentication/RegisterPage.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/authentication/RegisterPage.jsx b/src/pages/authentication/RegisterPage.jsx index 656ccecf..63bafa6b 100644 --- a/src/pages/authentication/RegisterPage.jsx +++ b/src/pages/authentication/RegisterPage.jsx @@ -7,7 +7,7 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { z } from "zod"; import showToast from "../../services/toastService"; import AuthRepository from "../../repositories/AuthRepository"; -import { MarketRespository } from "../../repositories/MarketRepository"; +import { MarketRepository } from "../../repositories/MarketRepository"; const mobileNumberRegex = /^(?:\d{10}|\d{3}[-\s]?\d{3}[-\s]?\d{4})$/; @@ -47,7 +47,7 @@ const RegisterPage = () => { const onSubmit = async (data) => { try { - const response = await MarketRespository.requestDemo(data); + const response = await MarketRepository.requestDemo(data); showToast("Your Registration SuccessFully !"); setRegristered(true); } catch (error) { @@ -63,7 +63,7 @@ const RegisterPage = () => { const fetchIndustries = async () => { try { - const response = await MarketRespository.getIndustries(); + const response = await MarketRepository.getIndustries(); const industry = response.data; setIndustries(industry); } catch (error) {