From 6b6be4f50cfcc2ad73089a736880bed1d55b6715 Mon Sep 17 00:00:00 2001 From: Rami Bitar Date: Mon, 11 May 2026 23:31:23 -0400 Subject: [PATCH] Log PUBLISH payload in handlePublish Co-Authored-By: Claude Opus 4.7 --- src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.tsx b/src/App.tsx index a40d80d..baafb3c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -47,6 +47,7 @@ export default function App() { ); const handlePublish = async (data: any, route?: { key: string }) => { + console.log("PUBLISH", { data, route: route?.key }); if (typeof window !== "undefined" && window.parent !== window) { window.parent.postMessage( { type: "PUBLISH", data: { data, route: route?.key } },