From 9dc0433bf249cfbcf19bc6951e94582c0cd1a31c Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 30 Nov 2025 16:22:23 -0700 Subject: [PATCH] fix: register FathomNoteShape in customShapeUtils MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The FathomNote shape was being created by FathomMeetingsBrowserShape but wasn't registered with tldraw, causing "No shape util found for type FathomNote" errors when loading canvases with Fathom notes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/routes/Board.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/routes/Board.tsx b/src/routes/Board.tsx index 2701981..be7f9ab 100644 --- a/src/routes/Board.tsx +++ b/src/routes/Board.tsx @@ -40,6 +40,7 @@ import { FathomMeetingsTool } from "@/tools/FathomMeetingsTool" import { HolonBrowserShape } from "@/shapes/HolonBrowserShapeUtil" import { ObsidianBrowserShape } from "@/shapes/ObsidianBrowserShapeUtil" import { FathomMeetingsBrowserShape } from "@/shapes/FathomMeetingsBrowserShapeUtil" +import { FathomNoteShape } from "@/shapes/FathomNoteShapeUtil" import { ImageGenShape } from "@/shapes/ImageGenShapeUtil" import { ImageGenTool } from "@/tools/ImageGenTool" import { VideoGenShape } from "@/shapes/VideoGenShapeUtil" @@ -86,6 +87,7 @@ const customShapeUtils = [ HolonBrowserShape, ObsidianBrowserShape, FathomMeetingsBrowserShape, + FathomNoteShape, // Individual Fathom meeting notes created from FathomMeetingsBrowser ImageGenShape, VideoGenShape, MultmuxShape,