Skip to content

Commit

Permalink
Lint rules debugged
Browse files Browse the repository at this point in the history
  • Loading branch information
anoopkarnik committed Jul 30, 2024
1 parent 7620e5e commit 768722d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Settings = () => {
</SelectTrigger>
<SelectContent className='w-[380px]'>
{accounts.map((account:any) => (
<SelectItem value={account.name}>
<SelectItem key={account.name} value={account.name}>
<div className='flex items-center justify-start gap-4 w-[200px]'>
<div>{account.name}</div>
</div>
Expand All @@ -113,7 +113,7 @@ const Settings = () => {
</SelectTrigger>
<SelectContent className='w-[380px]'>
{accounts.map((account:any) => (
<SelectItem value={account.name}>
<SelectItem key={account.name} value={account.name}>
<div className='flex items-center justify-start gap-4 w-[200px]'>
<div>{account.name}</div>
</div>
Expand Down

0 comments on commit 768722d

Please sign in to comment.