Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Mar 3, 2024
1 parent 490e61f commit 3bcf569
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions components/Records/records.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,10 @@ export const RecordsSection: FC<{
}> = ({ enstate, farcaster }) => {
return (
<div className="flex flex-col gap-4">
{enstate?.records && Object.keys(enstate.records)
.map((key) => buttonControls(key, enstate.records[key]))
.filter(Boolean)}
{enstate?.records &&
Object.keys(enstate.records)
.map((key) => buttonControls(key, enstate.records[key]))
.filter(Boolean)}
{farcaster && farcaster.result && (
<AButton
href={`https://warpcast.com/${farcaster.result.user.username}`}
Expand Down

0 comments on commit 3bcf569

Please sign in to comment.