Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ components/GlobalGiftSpinner/GlobalGiftSpinner.tsx
components/GlobalHeader/GlobalHeader.tsx
components/GroupCard/GroupCard.tsx
components/ImageSelector/ImageSelector.tsx
components/Input/input.tsx
components/InviteCard/InviteCard.tsx
components/JourneyCard/JourneyCard.tsx
components/Label/label.tsx
Expand Down
5 changes: 4 additions & 1 deletion components/Input/input.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import * as React from 'react';
// Copyright (c) Gridiron Survivor.
// Licensed under the MIT License.

import * as React from 'react';
Comment thread
luisarevalo21 marked this conversation as resolved.
Outdated
import { cn } from '@/lib/utils';

const Input = React.forwardRef<HTMLInputElement, React.ComponentProps<'input'>>(
Comment thread
luisarevalo21 marked this conversation as resolved.
Outdated
Expand All @@ -18,6 +20,7 @@ const Input = React.forwardRef<HTMLInputElement, React.ComponentProps<'input'>>(
);
},
);

Input.displayName = 'Input';

export { Input };