refactor: use apiUrl

This commit is contained in:
karishmas6
2024-11-01 08:26:13 +05:30
parent 5cbab56386
commit 28a924bf0f
3 changed files with 6 additions and 3 deletions

View File

@@ -4,6 +4,7 @@ import axios from 'axios';
import { AuthContext } from '../context/auth';
import { TextField, Button, CircularProgress, Typography, Box, Container } from '@mui/material';
import { useGlobalInfoStore } from "../context/globalInfo";
import { apiUrl } from "../apiConfig";
const Register = () => {
const [form, setForm] = useState({
@@ -31,7 +32,7 @@ const Register = () => {
e.preventDefault();
setLoading(true);
try {
const { data } = await axios.post('http://localhost:8080/auth/register', {
const { data } = await axios.post(`${apiUrl}/auth/register`, {
email,
password,
});