Skip to content

Commit

Permalink
Fix typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher committed Jan 27, 2022
1 parent 72e7409 commit 0de0c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/concepts/components/MappingsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const MappingsTable: React.FC<Props> = ({
const [allowReordering, setAllowReordering] = useState(false);

useEffect(
() => setAllowReordering(title === "Answer" || title === "Set Members"),
() => setAllowReordering(title === "Answer" || title === "Set Member"),
[title]
);

Expand Down

0 comments on commit 0de0c31

Please sign in to comment.