From 97a0bbe31d78afb007e65f0f01ddf31ba50bb314 Mon Sep 17 00:00:00 2001 From: alma Date: Wed, 16 Apr 2025 22:55:20 +0200 Subject: [PATCH] Neah version calendar fix 3 debuger ???? ???????? --- .env.local | 7 ------- components/flow.tsx | 2 -- 2 files changed, 9 deletions(-) delete mode 100644 .env.local diff --git a/.env.local b/.env.local deleted file mode 100644 index 40415e9..0000000 --- a/.env.local +++ /dev/null @@ -1,7 +0,0 @@ -# SMTP Configuration -SMTP_HOST=smtp.gmail.com -SMTP_PORT=587 -SMTP_SECURE=false -SMTP_USER=your-email@gmail.com -SMTP_PASSWORD=your-app-specific-password -SMTP_FROM=your-email@gmail.com \ No newline at end of file diff --git a/components/flow.tsx b/components/flow.tsx index 0d99d60..61ada44 100644 --- a/components/flow.tsx +++ b/components/flow.tsx @@ -99,7 +99,6 @@ export function Duties() { const data = await response.json(); if (!Array.isArray(data)) { - console.warn('No tasks found in response', data as unknown); setTasks([]); return; } @@ -138,7 +137,6 @@ export function Duties() { setTasks(sortedTasks.slice(0, 7)); } catch (error) { - console.error('Error fetching tasks:', error); setError(error instanceof Error ? error.message : 'Failed to fetch tasks'); } finally { setLoading(false);