Remove underline from diagnostic source

Julia created

Change summary

styles/src/styleTree/hoverPopover.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

styles/src/styleTree/hoverPopover.ts 🔗

@@ -40,7 +40,7 @@ export default function HoverPopover(colorScheme: ColorScheme) {
             padding: { top: 4 },
         },
         prose: text(layer, "sans", { size: "sm" }),
-        diagnosticSourceHighlight: { underline: true, color: foreground(layer, "accent") },
+        diagnosticSourceHighlight: { color: foreground(layer, "accent") },
         highlight: colorScheme.ramps.neutral(0.5).alpha(0.2).hex(), // TODO: blend was used here. Replace with something better
     }
 }