From 6dd1a5b332a853f0e2c7226ac1f64e403ef752d7 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Thu, 4 Jun 2026 07:17:18 -0500 Subject: [PATCH] fix(scanner): corrected teh endpoint to delete the user if needed --- frontend/src/routes/admin/scanUsers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/admin/scanUsers.tsx b/frontend/src/routes/admin/scanUsers.tsx index 7584fef..61ad766 100644 --- a/frontend/src/routes/admin/scanUsers.tsx +++ b/frontend/src/routes/admin/scanUsers.tsx @@ -180,7 +180,7 @@ const ScanUserTable = () => { try { const res = await api.delete( - `/lst/api/mobile/auth/user/${i.row.original.id}`, + `/mobile/auth/user/${i.row.original.id}`, { withCredentials: true,