fix: update API endpoint for fetching plans in AdminUsersPage
Some checks failed
Frontend CI / lint (push) Failing after 5m5s
Frontend CI / build (push) Has been skipped

This commit is contained in:
JSC
2025-07-16 15:45:13 +02:00
parent 58b8d8bbbe
commit 47de5ab4bc

View File

@@ -80,7 +80,7 @@ export function AdminUsersPage() {
const fetchPlans = async () => { const fetchPlans = async () => {
try { try {
const response = await apiService.get('/api/admin/plans'); const response = await apiService.get('/api/referential/plans');
const data = await response.json(); const data = await response.json();
if (response.ok) { if (response.ok) {