From 52c6358a0c74a4982e1bafeb016dc0b5087e5b3b Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Fri, 11 Jul 2025 20:22:20 +0200 Subject: [PATCH] Remove unused `showInfoToast` during customer data fetch --- internal_frontend/app/customers/page.tsx | 1 - 1 file changed, 1 deletion(-) 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)");