Skip to content

Commit

Permalink
fix rendering error
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhao99 committed Nov 6, 2024
1 parent 1dec25e commit 347328a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export const ConditionColumnDisplay: React.FC<ConditionColumnDisplayProps> = ({
([conditionId, conditionNameAndInclude]) => {
return (
<ConditionOption
key={conditionId}
conditionId={conditionId}
conditionNameAndInclude={conditionNameAndInclude}
handleConditionSelection={handleConditionSelection}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ConditionOption: React.FC<ConditionOptionProps> = ({
handleConditionSelection,
}) => {
return (
<div className="margin-y-2" key={conditionId}>
<div className="margin-y-2">
<Checkbox
onClick={() => {
handleConditionSelection(conditionId);
Expand Down

0 comments on commit 347328a

Please sign in to comment.