diff --git a/components/ApplicationBar.tsx b/components/ApplicationBar.tsx
index fbeaf9752..f25ee1193 100644
--- a/components/ApplicationBar.tsx
+++ b/components/ApplicationBar.tsx
@@ -87,7 +87,7 @@ function ConfirmationDialog(props: { open: boolean, onClose: () => void, onPosit
/**
* FIXME - TEMPORARY - placeholder for a proper Pages Drawer
*/
-function PagesMenu(props: { pagesMenuAnchor: HTMLElement | null, onClose: () => void }) {
+function PagesMenu(props: { pagesMenuAnchor: HTMLElement | null, onClose: () => void, onClearConversation: (e: React.MouseEvent, conversationId: string) => void }) {
const conversationNames: { id: string; name: string, systemPurposeId: SystemPurposeId }[] = useConversationNames();
const setActiveConversation = useChatStore((state) => state.setActiveConversationId);
@@ -95,7 +95,7 @@ function PagesMenu(props: { pagesMenuAnchor: HTMLElement | null, onClose: () =>
setActiveConversation(conversationId);
return