mobile: fix crash when opening notebook (happens randomly)

This commit is contained in:
Ammar Ahmed
2026-02-03 11:10:59 +05:00
parent c07f5393f6
commit 38690d18d4

View File

@@ -193,11 +193,13 @@ const NotebookScreen = ({ route, navigation }: NavigationProps<"Notebook">) => {
headerTitle={notebook?.title}
loading={loading}
CustomLisHeader={
<NotebookHeader
breadcrumbs={breadcrumbs}
notebook={notebook!}
totalNotes={notes?.placeholders.length || 0}
/>
notebook ? (
<NotebookHeader
breadcrumbs={breadcrumbs}
notebook={notebook}
totalNotes={notes?.placeholders.length || 0}
/>
) : undefined
}
placeholder={{
title: notebook?.title!,