Skip to content

Commit

Permalink
Fix [Functions] Unexpected error during functions deletion (#2489)
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-prokopchuk committed May 29, 2024
1 parent 7fd36e3 commit 61f810e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FunctionsPage/functions.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,6 @@ const functionDeletingSuccessHandler = (dispatch, func) => {

const isFunctionDeleting = (func, deletingFunctions) => {
return Object.values(deletingFunctions).some(deletingFunction => {
return deletingFunction.name === func.name
return deletingFunction.name === func?.name
})
}

0 comments on commit 61f810e

Please sign in to comment.