Skip to content

Commit

Permalink
fix: condition key
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Nov 18, 2024
1 parent 72d894a commit ffb3b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/settings/action-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export function ActionCard({
FeedOptions.find((option) => option.value === condition.field)?.type ||
"text"
return (
<Fragment key={orConditionIdx}>
<Fragment key={`${orConditionIdx}${conditionIdx}`}>
{conditionIdx === 0 && orConditionIdx !== 0 && (
<TableRow className="flex h-16 items-center">
<Button disabled variant="outline">
Expand Down

0 comments on commit ffb3b94

Please sign in to comment.