Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit Chatterjee committed Apr 28, 2024
1 parent 7b6067c commit 7e7302a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Flows/TaskSequence.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const TaskSequence = ({
const selectedOptions = field.value;

const newSelectedOptions = selectedOptions.filter(
(option) => option.uuid !== node.data.uuid
(option: any) => option.uuid !== node.data.uuid
);

field.onChange(newSelectedOptions);
Expand Down

0 comments on commit 7e7302a

Please sign in to comment.