Skip to content

Commit

Permalink
fix: fragment key
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Feb 27, 2023
1 parent d44f53b commit 0412db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/AllowanceMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ function AllowanceMenu({ allowance, onEdit, onDelete }: Props) {
</h2>
<div>
{permissions.map((permission) => (
<Fragment key={`element-${permission.id}`}>
<Fragment key={permission.id}>
<Setting
title={permission.method}
subtitle={tPermissions(
Expand Down

0 comments on commit 0412db8

Please sign in to comment.