From 3b8500f7cfdc986599412b415955b64a90d9b52a Mon Sep 17 00:00:00 2001 From: Kostya Farber Date: Sat, 17 Jan 2026 12:43:50 +0000 Subject: [PATCH] fix: unused classname in frame indicator (#7701) Removes an unused CSS class `tl-frame-indicator` from the frame shape indicator. This class is referenced but never defined anywhere in the codebase, so it has no effect. ### Change type - [x] `other` ### Test plan 1. Open the examples app 2. Create a frame shape 3. Hover or select it to see the indicator renders correctly ### Release notes - Remove unused CSS class from frame indicator --- packages/tldraw/src/lib/shapes/frame/FrameShapeUtil.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/tldraw/src/lib/shapes/frame/FrameShapeUtil.tsx b/packages/tldraw/src/lib/shapes/frame/FrameShapeUtil.tsx index 63d4ba59ccc1..c46a7777933d 100644 --- a/packages/tldraw/src/lib/shapes/frame/FrameShapeUtil.tsx +++ b/packages/tldraw/src/lib/shapes/frame/FrameShapeUtil.tsx @@ -333,13 +333,7 @@ export class FrameShapeUtil extends BaseBoxShapeUtil { } indicator(shape: TLFrameShape) { - return ( - - ) + return } override providesBackgroundForChildren(): boolean {