diff --git a/apps/mobile/app/components/attachments/index.tsx b/apps/mobile/app/components/attachments/index.tsx index 41456a699..4cf9a25d5 100644 --- a/apps/mobile/app/components/attachments/index.tsx +++ b/apps/mobile/app/components/attachments/index.tsx @@ -545,6 +545,7 @@ export const AttachmentDialog = ({ } estimatedItemSize={50} data={loading ? [] : attachments?.placeholders || []} + extraData={attachments} renderItem={renderItem} /> diff --git a/apps/mobile/app/components/note-history/index.tsx b/apps/mobile/app/components/note-history/index.tsx index 7f768394b..a369975db 100644 --- a/apps/mobile/app/components/note-history/index.tsx +++ b/apps/mobile/app/components/note-history/index.tsx @@ -160,6 +160,7 @@ export default function NoteHistory({ renderScrollComponent={(props) => } data={history?.placeholders || []} estimatedItemSize={55} + extraData={history} ListEmptyComponent={ { renderScrollComponent={(props) => } bounces={false} data={items.placeholders || []} + extraData={items} renderItem={renderNote} /> diff --git a/apps/mobile/app/components/side-menu/side-menu-tags.tsx b/apps/mobile/app/components/side-menu/side-menu-tags.tsx index 65904e0e3..2216c4449 100644 --- a/apps/mobile/app/components/side-menu/side-menu-tags.tsx +++ b/apps/mobile/app/components/side-menu/side-menu-tags.tsx @@ -258,6 +258,7 @@ export const SideMenuTags = () => { <> ) => { width: "100%", alignSelf: "center", backgroundColor: colors.primary.background, - gap: DefaultAppStyles.GAP_VERTICAL + gap: DefaultAppStyles.GAP_VERTICAL, + flex: 1 }} >
) => {