Skip to content

Commit

Permalink
update activities
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Dec 19, 2024
1 parent 186b0e1 commit df3d3bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/components/UserDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function UserDropdown() {
Activity
</div>
<div className='mt-4 space-y-4 h-[400px] overflow-auto'>
{account.activities.map((act, index) => {
{account?.activities?.map((act, index) => {
if (act.type == 'SUBMIT_ARTWORK')
return (
<div key={index} className='flex gap-4 items-center'>
Expand Down

0 comments on commit df3d3bf

Please sign in to comment.