Skip to content

Commit 8b804f8

Browse files
authored
fix: Removed extra " that didn't allow bg color on hover (#1003)
1 parent 2fc63f5 commit 8b804f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/routes/package/(_islands)/DependencyGraph.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ function GraphControlButton(props: GraphControlButtonProps) {
369369
<button
370370
type="button"
371371
aria-label={props.title}
372-
class={`${props.class} bg-white text-jsr-gray-700 p-1.5 ring-1 ring-jsr-gray-700 rounded-full sm:rounded hover:bg-jsr-gray-100/30"`}
372+
class={`${props.class} bg-white text-jsr-gray-700 p-1.5 ring-1 ring-jsr-gray-700 rounded-full sm:rounded hover:bg-jsr-gray-100/30`}
373373
onClick={props.onClick}
374374
title={props.title}
375375
>

0 commit comments

Comments
 (0)