Skip to content

Commit 63e039e

Browse files
committed
fix: sidebar address error
1 parent 6895fc9 commit 63e039e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/api/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const getAuthState = () => {
66
return authState ? JSON.parse(authState) : null;
77
};
88

9-
const baseUrl = process.env.REACT_APP_QA_API_URL;
9+
const baseUrl = process.env.REACT_APP_API_URL;
1010

1111
export const apiClient = axios.create({
1212
baseURL: baseUrl,

src/pages/admin/AdminPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useState, useEffect } from 'react';
22
import { Outlet } from 'react-router-dom';
33
import { AnimatePresence } from 'framer-motion';
4-
import CustomSidebar from '../../components/sidebar/SideBar';
4+
import CustomSidebar from '../../components/sidebar/Sidebar';
55

66
const AdminPage = () => {
77
const [isSidebarOpen, setIsSidebarOpen] = useState(true);

0 commit comments

Comments
 (0)