diff --git a/internal_frontend/app/customers/page.tsx b/internal_frontend/app/customers/page.tsx index 9974d55..81711ca 100644 --- a/internal_frontend/app/customers/page.tsx +++ b/internal_frontend/app/customers/page.tsx @@ -46,7 +46,6 @@ export default function CustomersPage() { throw new Error(`Failed to fetch customers: ${response.statusText}`); } const data = await response.json(); - showInfoToast("Customers data loaded"); setCustomers(data); } catch (error) { showError("Failed to fetch customers data (1)");