Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Oct 3, 2024
1 parent ecb2d33 commit f0767e2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/renderer/src/modules/entry-content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ export const EntryContentRender: Component<{
{!content && (
<div className="center mt-16 min-w-0">
{isPending ? (
<EntryContentLoading icon={feed?.siteUrl!} />
<EntryContentLoading
icon={feed?.type === "inbox" ? undefined : feed?.siteUrl!}
/>
) : error ? (
<div className="center flex min-w-0 flex-col gap-2">
<i className="i-mgc-close-cute-re text-3xl text-red-500" />
Expand Down

0 comments on commit f0767e2

Please sign in to comment.