Skip to content

Commit

Permalink
Update Records
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Mar 3, 2024
1 parent c3543ac commit 40e5a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Records/records.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const RecordsSection: FC<{
}> = ({ enstate, farcaster }) => {
return (
<div className="flex flex-col gap-4">
{Object.keys(enstate.records)
{enstate?.records && Object.keys(enstate.records)
.map((key) => buttonControls(key, enstate.records[key]))
.filter(Boolean)}
{farcaster && farcaster.result && (
Expand Down

0 comments on commit 40e5a6b

Please sign in to comment.