From 043acf33bdf8cc338dcc7af5b1256d861a6bb03e Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Wed, 3 Dec 2025 16:12:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(clock):=20fix=20Svelte=20cla?= =?UTF-8?q?ss=20directive=20syntax=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace class: directives containing slashes with inline conditionals Svelte's class: directive doesn't support Tailwind classes with / 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/clock/apps/web/src/routes/timers/+page.svelte | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/apps/clock/apps/web/src/routes/timers/+page.svelte b/apps/clock/apps/web/src/routes/timers/+page.svelte index 28b109df1..6df007956 100644 --- a/apps/clock/apps/web/src/routes/timers/+page.svelte +++ b/apps/clock/apps/web/src/routes/timers/+page.svelte @@ -370,10 +370,7 @@ {#each allTimers as timer (timer.id)} {@const isLocal = isLocalTimer(timer)}
{getTimerDisplay(timer)} @@ -411,9 +406,7 @@