Skip to content

Commit 51436fb

Browse files
committed
fix(lint): prefix unused value variable in TabTrigger
1 parent 99472b5 commit 51436fb

File tree

1 file changed

+1
-1
lines changed
  • webview-ui/src/components/common

1 file changed

+1
-1
lines changed

webview-ui/src/components/common/Tab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const TabTrigger = forwardRef<
7575
isSelected?: boolean
7676
onSelect?: () => void
7777
}
78-
>(({ children, className, value, isSelected, onSelect, ...props }, ref) => {
78+
>(({ children, className, value: _value, isSelected, onSelect, ...props }, ref) => {
7979
return (
8080
<button
8181
ref={ref}

0 commit comments

Comments
 (0)