diff --git a/apps/mobile/src/modules/entry-content/EntryTitle.tsx b/apps/mobile/src/modules/entry-content/EntryTitle.tsx index 5cb249b4a..f67479fce 100644 --- a/apps/mobile/src/modules/entry-content/EntryTitle.tsx +++ b/apps/mobile/src/modules/entry-content/EntryTitle.tsx @@ -106,7 +106,7 @@ export const EntryTitle = ({ title, entryId }: { title: string; entryId: string setTitleHeight(titleHeight) }} > - {title} + {title} ) diff --git a/apps/mobile/src/screens/(stack)/entries/[entryId]/index.tsx b/apps/mobile/src/screens/(stack)/entries/[entryId]/index.tsx index ecf1258c9..ad1b91cdf 100644 --- a/apps/mobile/src/screens/(stack)/entries/[entryId]/index.tsx +++ b/apps/mobile/src/screens/(stack)/entries/[entryId]/index.tsx @@ -121,7 +121,7 @@ const FeedInfo = ({ feedId }: { feedId: string }) => { if (!feed) return null return ( - {feed.title} + {feed.title?.trim()} ) }