From 86f8b3e945cd29e8d16075904ccd82d16f38f0c3 Mon Sep 17 00:00:00 2001 From: ogabrielluiz Date: Sat, 22 Jun 2024 21:07:43 +0000 Subject: [PATCH] Apply Prettier formatting --- src/frontend/src/CustomNodes/hooks/use-check-code-validity.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/CustomNodes/hooks/use-check-code-validity.tsx b/src/frontend/src/CustomNodes/hooks/use-check-code-validity.tsx index 95d3df77c..bcad57eca 100644 --- a/src/frontend/src/CustomNodes/hooks/use-check-code-validity.tsx +++ b/src/frontend/src/CustomNodes/hooks/use-check-code-validity.tsx @@ -24,7 +24,7 @@ const useCheckCodeValidity = ( if (!thisNodeTemplate.code) return; const currentCode = thisNodeTemplate.code?.value; const thisNodesCode = data.node!.template?.code?.value; - const componentsToIgnore = ["CustomComponent"] + const componentsToIgnore = ["CustomComponent"]; setIsOutdated( currentCode !== thisNodesCode && !componentsToIgnore.includes(data.type), );