aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/preview/ReaderView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/dashboard/preview/ReaderView.tsx')
-rw-r--r--apps/web/components/dashboard/preview/ReaderView.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/preview/ReaderView.tsx b/apps/web/components/dashboard/preview/ReaderView.tsx
index bf4c27a5..1974626a 100644
--- a/apps/web/components/dashboard/preview/ReaderView.tsx
+++ b/apps/web/components/dashboard/preview/ReaderView.tsx
@@ -15,10 +15,12 @@ export default function ReaderView({
bookmarkId,
className,
style,
+ readOnly,
}: {
bookmarkId: string;
className?: string;
style?: React.CSSProperties;
+ readOnly: boolean;
}) {
const { data: highlights } = api.highlights.getForBookmark.useQuery({
bookmarkId,
@@ -93,6 +95,7 @@ export default function ReaderView({
style={style}
htmlContent={cachedContent || ""}
highlights={highlights?.highlights ?? []}
+ readOnly={readOnly}
onDeleteHighlight={(h) =>
deleteHighlight({
highlightId: h.id,