From 695201ca99bf5cae29a770d22aaf627d2165d2b8 Mon Sep 17 00:00:00 2001 From: Jared Pereira Date: Sat, 22 Nov 2025 17:04:41 -0500 Subject: [PATCH] fix type error --- app/lish/[did]/[publication]/page.tsx | 2 +- components/Pages/Page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lish/[did]/[publication]/page.tsx b/app/lish/[did]/[publication]/page.tsx index 20487e88..aa1ac273 100644 --- a/app/lish/[did]/[publication]/page.tsx +++ b/app/lish/[did]/[publication]/page.tsx @@ -69,7 +69,7 @@ export default async function Publication(props: { >
{record?.icon && ( diff --git a/components/Pages/Page.tsx b/components/Pages/Page.tsx index 59b5183c..fffb4a39 100644 --- a/components/Pages/Page.tsx +++ b/components/Pages/Page.tsx @@ -84,7 +84,7 @@ export const PageWrapper = (props: { pageType: "canvas" | "doc"; drawerOpen: boolean | undefined; }) => { - let { ref } = usePreserveScroll(props.id); + let { ref } = usePreserveScroll(props.id); return ( // this div wraps the contents AND the page options. // it needs to be its own div because this container does NOT scroll, and therefore doesn't clip the absolutely positioned pageOptions -- 2.51.2