From d1d344b3ddb480ce21b63d452fe1f19ebc6d4c1b Mon Sep 17 00:00:00 2001 From: Jake Date: Sun, 19 Apr 2026 16:43:09 +0100 Subject: [PATCH] fix(tailwind): reword ResizeHandles comment to avoid apostrophe+backtick in Tailwind JIT scan Tailwind v4 JIT scanner mis-tokenised the comment 'Tauri`s `data-tauri-drag-region`' as an unterminated string literal, breaking dev-server HMR. Comment rewritten to avoid apostrophes near backticks. No behaviour change. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/lib/components/ResizeHandles.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/components/ResizeHandles.svelte b/src/lib/components/ResizeHandles.svelte index 404ec8f..89b410a 100644 --- a/src/lib/components/ResizeHandles.svelte +++ b/src/lib/components/ResizeHandles.svelte @@ -5,10 +5,10 @@ // // Architecture: eight fixed-position divs are the click target for // resize. Because the divs themselves are the event target (not any - // ancestor), Tauri's `data-tauri-drag-region` delegated handler walks - // the div's ancestors, finds no drag-region, and does not start a - // window move. This gives us a clean separation: resize wins on the - // edges, drag wins on the titlebar. + // ancestor), the delegated handler for data-tauri-drag-region walks + // the ancestors of the div, finds no drag-region, and does not start + // a window move. This gives us a clean separation: resize wins on + // the edges, drag wins on the titlebar. // // Hit zone sizes come from CSS custom properties so every Kon window // across the app stays identical. See `--kon-resize-edge` and