From f9bb655f6a2660c0f814d93d56152c0d6d31f492 Mon Sep 17 00:00:00 2001 From: BOHA Date: Sun, 7 Jun 2026 11:34:19 +0200 Subject: [PATCH] =?UTF-8?q?fix(attendance):=20restore=20two-column=20grid?= =?UTF-8?q?=20on=20the=20Doch=C3=A1zka=20landing=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The PageEnter sweep had replaced the left grid column's wrapper with a React Fragment, so its two cards (clock + completed shifts) leaked out as separate grid items and the layout broke (shifts table jumped to the right cell, stat box wrapped to row 2). Wrap the left column back in a so the 2-col grid has exactly two column children again. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/admin/pages/Attendance.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/admin/pages/Attendance.tsx b/src/admin/pages/Attendance.tsx index 6497629..2c94ca7 100644 --- a/src/admin/pages/Attendance.tsx +++ b/src/admin/pages/Attendance.tsx @@ -636,7 +636,7 @@ export default function Attendance() { }} > {/* Left Column - Clock In/Out */} - <> + )} - + {/* Right Column - Stats & Quick Links */}