Skip to content

Commit

Permalink
instagram type capitalize first
Browse files Browse the repository at this point in the history
  • Loading branch information
bshevchenko committed Jun 4, 2024
1 parent 61e5187 commit c68419b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/components/MintAccounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ export const MintAccounts = ({ up, isMyProfile }: { up: string; isMyProfile: boo
<div className="flex items-center mt-3 mb-3">
<TagIcon className="w-6 mr-1" />
&nbsp;
{token.data.account_type.toLowerCase()}
{token.data.account_type.charAt(0).toUpperCase() + token.data.account_type.slice(1).toLowerCase()}
</div>
</>
)}
Expand Down

0 comments on commit c68419b

Please sign in to comment.