From 95526fb9edaa02df7e6c8c86c7ed793152ef3d9d Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 11 Dec 2025 12:20:11 -0500 Subject: [PATCH] fix share image --- packages/enterprise/src/routes/share/[shareID].tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/packages/enterprise/src/routes/share/[shareID].tsx b/packages/enterprise/src/routes/share/[shareID].tsx index fee66b478..ec675a38d 100644 --- a/packages/enterprise/src/routes/share/[shareID].tsx +++ b/packages/enterprise/src/routes/share/[shareID].tsx @@ -138,10 +138,15 @@ const getData = query(async (shareID) => { export default function () { const params = useParams() - const data = createAsync(async () => { - if (!params.shareID) throw new Error("Missing shareID") - return getData(params.shareID) - }) + const data = createAsync( + async () => { + if (!params.shareID) throw new Error("Missing shareID") + return getData(params.shareID) + }, + { + deferStream: true, + }, + ) createEffect(() => { console.log(data())