Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lengyel-arpad85 committed Nov 7, 2024
1 parent afb1297 commit 1ec32d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/app/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type ButtonProps = VariantProps<typeof buttonStyles> &
}

export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
({ intent, children, className, variant, ...props }, ref) => {
({ intent, children, className, ...props }, ref) => {
return (
<ButtonOrLink
ref={ref}
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/components/CopyButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface CopyButtonProps
}

export const CopyButton = forwardRef<HTMLButtonElement, CopyButtonProps>(
({ value, size, ctaText, afterCtaText, variant, ...props }, ref) => {
({ value, size, ctaText, afterCtaText, variant }, ref) => {
const [isCopied, setIsCopied] = useState(false)

useEffect(() => {
Expand Down

0 comments on commit 1ec32d6

Please sign in to comment.