From f3fac6f0dc6e699110bb61db2de40868508cb8f0 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Sat, 25 Jul 2026 13:51:12 +0200 Subject: [PATCH] fix(client): use boolean Monaco hover option --- client/src/components/Artifacts/ArtifactCodeEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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],