From b858d54cb6afb7fc6503a1ec959aedec1880d9d8 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Mon, 15 Jul 2024 17:38:39 +0100 Subject: [PATCH] fix conflict --- libs/remix-ui/workspace/src/lib/components/file-explorer.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx b/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx index 1c1f7706cf..e2eed01191 100644 --- a/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx +++ b/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx @@ -99,10 +99,6 @@ export const FileExplorer = (props: FileExplorerProps) => { } }, [treeRef.current]) - useEffect(() => { - plugin - }, []) - const hasReservedKeyword = (content: string): boolean => { if (state.reservedKeywords.findIndex((value) => content.startsWith(value)) !== -1) return true else return false