Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey committed Jan 4, 2025
1 parent 4a73268 commit f00e5e8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/PostEmbed/app-bsky-embed-record-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,16 @@ export const AppBskyEmbedRecordView = ({ embed }: { embed: BSkyPostEmbed }) => {
<div className="flex flex-col">
<div>{embed.record.displayName}</div>
<div>
feed by <Handle handle={embed.record.creator.handle} />
{'feed by '}
<Handle handle={embed.record.creator.handle} />
</div>
</div>
</div>
<div>liked by {embed.record.likeCount} people</div>
<div>
{'liked by '}
{embed.record.likeCount}
{' people'}
</div>
</Link>
)}
{embed.record.$type !== 'app.bsky.graph.defs#starterPackViewBasic' &&
Expand Down

0 comments on commit f00e5e8

Please sign in to comment.