From cf91fee6d992a7cf48bf2c0bb9a4e37d4dd36fbe Mon Sep 17 00:00:00 2001 From: Edwin Date: Wed, 12 Jul 2023 16:55:48 +0800 Subject: [PATCH] Delete useless console.log code --- .../client/src/pages/chat/components/file-editor/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/gpt-runner-web/client/src/pages/chat/components/file-editor/index.tsx b/packages/gpt-runner-web/client/src/pages/chat/components/file-editor/index.tsx index ee5df4a..10d875a 100644 --- a/packages/gpt-runner-web/client/src/pages/chat/components/file-editor/index.tsx +++ b/packages/gpt-runner-web/client/src/pages/chat/components/file-editor/index.tsx @@ -38,7 +38,6 @@ export const FileEditor: FC = memo((props) => { updateFileEditorItem, removeFileEditorItem, } = useFileEditorStore() - console.log('fileEditorItems', fileEditorItems) const [isLoading, setIsLoading] = useState(false) const { mutate: saveFileToRemote, isLoading: saveFileLoading } = useMutation({ mutationFn: (params: SaveFileContentReqParams) => saveFileContent(params),