We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6895fc9 commit 63e039eCopy full SHA for 63e039e
src/api/client.js
@@ -6,7 +6,7 @@ const getAuthState = () => {
6
return authState ? JSON.parse(authState) : null;
7
};
8
9
-const baseUrl = process.env.REACT_APP_QA_API_URL;
+const baseUrl = process.env.REACT_APP_API_URL;
10
11
export const apiClient = axios.create({
12
baseURL: baseUrl,
src/pages/admin/AdminPage.jsx
@@ -1,7 +1,7 @@
1
import React, { useState, useEffect } from 'react';
2
import { Outlet } from 'react-router-dom';
3
import { AnimatePresence } from 'framer-motion';
4
-import CustomSidebar from '../../components/sidebar/SideBar';
+import CustomSidebar from '../../components/sidebar/Sidebar';
5
const AdminPage = () => {
const [isSidebarOpen, setIsSidebarOpen] = useState(true);
0 commit comments