Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vikashsprem committed Nov 26, 2024
1 parent 4c66487 commit f545c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/assets/custom-fields-inputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export default function AssetCustomFields({
{customFields.length > 0 ? (
<>
<div>
<h3 className="text-lg font-medium mb-4">Required Fields</h3>
<h3 className="mb-4 text-lg font-medium">Required Fields</h3>
{customFields
.filter((field) => field.required)
.map((field, index) => {
Expand Down Expand Up @@ -257,7 +257,7 @@ export default function AssetCustomFields({
</div>
<hr className="my-6 border-gray-300" />
<div>
<h3 className="text-lg font-medium mb-4">Optional Fields</h3>
<h3 className="mb-4 text-lg font-medium">Optional Fields</h3>
{customFields
.filter((field) => !field.required)
.map((field, index) => {
Expand Down

0 comments on commit f545c11

Please sign in to comment.