From 51ca1e36d7c9fbffcfaaec6f15e9dc4d20b95f2f Mon Sep 17 00:00:00 2001 From: senke Date: Fri, 16 Jan 2026 12:21:33 +0100 Subject: [PATCH] fix: add missing logger import in toast.ts - Added logger import that was missing from Cleanup 12 - Fixes 'logger is not defined' error - Cleanup 16: Verifying no unused variables in production code --- apps/web/src/utils/toast.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/utils/toast.ts b/apps/web/src/utils/toast.ts index 938ef0a23..1291a8fdb 100644 --- a/apps/web/src/utils/toast.ts +++ b/apps/web/src/utils/toast.ts @@ -1,3 +1,5 @@ +import { logger } from './logger'; + /** * toast - Wrapper lazy pour react-hot-toast *