Skip to content

Commit

Permalink
Fix eslint props error issue by disabling it
Browse files Browse the repository at this point in the history
  • Loading branch information
balintking committed Dec 13, 2024
1 parent d566741 commit a9f84f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/frontend/src/components/ui/avatar.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/prop-types */
'use client';

import * as AvatarPrimitive from '@radix-ui/react-avatar';
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/src/components/ui/dropdown-menu.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/prop-types */
'use client';

import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/src/components/ui/input.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/prop-types */
import * as React from 'react';

import { cn } from '@/lib/utils';
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/src/components/ui/slider.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/prop-types */
'use client';

import * as SliderPrimitive from '@radix-ui/react-slider';
Expand Down

0 comments on commit a9f84f7

Please sign in to comment.