Skip to content

Commit

Permalink
removing linting ignore decorators
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaclombardssw committed Nov 8, 2024
1 parent 354c34b commit 089f9ae
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tina/customTinaFormFields/textInputWithCount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ export const TextInputWithCount = (max: number, isTextArea: boolean = false) =>
<div className="flex flex-col gap-2">
{isTextArea ? (
<textarea
// eslint-disable-next-line tailwindcss/no-custom-classname
className="focus:shadow-outline block min-h-40 w-full resize-y rounded-md border border-gray-200 px-3 py-2 text-base text-gray-600 shadow-inner focus:border-blue-500 focus:text-gray-900"
{...input}
/>
) : (
<input
// eslint-disable-next-line tailwindcss/no-custom-classname
className="focus:shadow-outline block w-full rounded-md border border-gray-200 bg-white px-3 py-2 text-base text-gray-600 shadow-inner transition-all duration-150 ease-out placeholder:text-gray-300 focus:border-blue-500 focus:text-gray-900 focus:outline-none"
{...input}
/>
Expand Down

0 comments on commit 089f9ae

Please sign in to comment.