diff --git a/client/src/components/Artifacts/ArtifactCodeEditor.tsx b/client/src/components/Artifacts/ArtifactCodeEditor.tsx index f95d7f044b..c8963c2dcc 100644 --- a/client/src/components/Artifacts/ArtifactCodeEditor.tsx +++ b/client/src/components/Artifacts/ArtifactCodeEditor.tsx @@ -422,7 +422,7 @@ export const ArtifactCodeEditor = function ArtifactCodeEditor({ quickSuggestions: !readOnly, suggestOnTriggerCharacters: !readOnly, parameterHints: { enabled: !readOnly }, - hover: { enabled: readOnly ? 'off' : 'on' }, + hover: { enabled: !readOnly }, matchBrackets: readOnly ? 'never' : 'always', }), [readOnly],