Skip to content

Commit

Permalink
fix: actions card key
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Jun 12, 2024
1 parent 47c3792 commit e191ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/pages/settings/actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function Component() {
<div className="space-y-4">
{actionsData.map((action, actionIdx) => (
<ActionCard
key={action.name}
key={actionIdx}
data={action}
onChange={(newAction) => {
if (!newAction) {
Expand Down

0 comments on commit e191ab1

Please sign in to comment.