From b3f6f36c0031aeefe683d341aa3da5397ce9cad8 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Wed, 28 Jan 2026 11:50:55 +0700 Subject: [PATCH] fix: reset employee when changing phase --- .../components/pages/daily-checklist/DailyChecklistContent.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/figma-make/components/pages/daily-checklist/DailyChecklistContent.tsx b/src/figma-make/components/pages/daily-checklist/DailyChecklistContent.tsx index 36a442b0..37430354 100644 --- a/src/figma-make/components/pages/daily-checklist/DailyChecklistContent.tsx +++ b/src/figma-make/components/pages/daily-checklist/DailyChecklistContent.tsx @@ -466,6 +466,8 @@ export function DailyChecklistContent() { setTempSelectedPhaseIds([...selectedPhaseIds]); setSearchPhase(''); setShowPhaseModal(true); + setTempSelectedEmployees([]); + setSelectedEmployees([]); }; const toggleTempPhase = (phaseId: string) => {