Skip to content

Commit

Permalink
fix: replace the className attribute with the class attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
toofff committed Sep 2, 2024
1 parent 2bf101d commit d240d9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/query-devtools/src/Devtools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ const DraggablePanel: Component<DevtoolsPanelProps> = (props) => {
aria-label="Tanstack query devtools"
>
<div
className={cx(
class={cx(
styles().dragHandle,
styles()[`dragHandle-position-${position()}`],
'tsqd-drag-handle',
Expand All @@ -584,7 +584,7 @@ const DraggablePanel: Component<DevtoolsPanelProps> = (props) => {
></div>
<button
aria-label="Close tanstack query devtools"
className={cx(
class={cx(
styles().closeBtn,
styles()[`closeBtn-position-${position()}`],
'tsqd-minimize-btn',
Expand Down

0 comments on commit d240d9d

Please sign in to comment.