From 38e3c888a09033b24b07cf5102666789c6c88135 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal Date: Fri, 30 May 2025 19:10:43 +0530 Subject: [PATCH] fix: add favorite action to page header --- web/core/components/pages/header/actions.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/core/components/pages/header/actions.tsx b/web/core/components/pages/header/actions.tsx index c9e3843704b..3c73d42efd4 100644 --- a/web/core/components/pages/header/actions.tsx +++ b/web/core/components/pages/header/actions.tsx @@ -13,6 +13,7 @@ import { TPageInstance } from "@/store/pages/base-page"; // local imports import { PageArchivedBadge } from "./archived-badge"; import { PageCopyLinkControl } from "./copy-link-control"; +import { PageFavoriteControl } from "./favorite-control"; import { PageOfflineBadge } from "./offline-badge"; type Props = { @@ -31,6 +32,7 @@ export const PageHeaderActions: React.FC = observer((props) => { + );