Spaces:
Sleeping
Sleeping
Commit ·
dec5d3b
1
Parent(s): 69d9549
Fix case sensitivity for Admin imports
Browse files
src/pages/Admindashboard.jsx
CHANGED
|
@@ -3,11 +3,11 @@ import { motion, AnimatePresence } from 'framer-motion';
|
|
| 3 |
import { supabase } from '../supabaseClient';
|
| 4 |
|
| 5 |
// Import the new split modules
|
| 6 |
-
import AdminLayout from '../components/
|
| 7 |
-
import AdminSummary from '../components/
|
| 8 |
-
import AdminSortingPage from '../components/
|
| 9 |
-
import AdminInterviewManagement from '../components/
|
| 10 |
-
import AdminProfile from '../components/
|
| 11 |
import JobPosting from './JobPosting'; // Import your existing JobPosting component
|
| 12 |
import TalentClusters from '../components/Admin/TalentClusters';
|
| 13 |
|
|
|
|
| 3 |
import { supabase } from '../supabaseClient';
|
| 4 |
|
| 5 |
// Import the new split modules
|
| 6 |
+
import AdminLayout from '../components/Admin/AdminLayout';
|
| 7 |
+
import AdminSummary from '../components/Admin/AdminSummary';
|
| 8 |
+
import AdminSortingPage from '../components/Admin/AdminSortingPage';
|
| 9 |
+
import AdminInterviewManagement from '../components/Admin/AdminInterviewManagement';
|
| 10 |
+
import AdminProfile from '../components/Admin/AdminProfile';
|
| 11 |
import JobPosting from './JobPosting'; // Import your existing JobPosting component
|
| 12 |
import TalentClusters from '../components/Admin/TalentClusters';
|
| 13 |
|