From aa8380a4e4a2864526a36e6b35f1bd75796fc496 Mon Sep 17 00:00:00 2001 From: Anton Date: Tue, 9 Jun 2026 11:15:26 +0200 Subject: [PATCH] canvas: drop empty-state placeholder, add background dot grid --- web/src/pages/CanvasPage.tsx | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/web/src/pages/CanvasPage.tsx b/web/src/pages/CanvasPage.tsx index 8dda24b..8cdb614 100644 --- a/web/src/pages/CanvasPage.tsx +++ b/web/src/pages/CanvasPage.tsx @@ -793,6 +793,20 @@ export function CanvasPage() { onPointerMove={onCanvasPointerMove} onWheel={onWheel} > + {/* Background dot grid — pans and zooms with the view. */} + + + + + + + {list.map((s) => ( )} - {list.length === 0 && ( -
-

- Pick a tool and click to start — or ask the agent to draw here. -

-
- )}