fix lint errors
This commit is contained in:
parent
dc479b2f77
commit
026e7917ed
@ -40,7 +40,7 @@ const SelectImageInput = ({ file }: { file?: string }) => {
|
|||||||
* Contains the input fields for editing the links for a resource
|
* Contains the input fields for editing the links for a resource
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
const ResourceLinkSubForm = ({ resource }: { resource?: AuditoryResource }) => {
|
const ResourceLinkSubForm = ({}) => {
|
||||||
return (
|
return (
|
||||||
<div className="mx-4">
|
<div className="mx-4">
|
||||||
<h1 className="mb-2 border-b border-neutral-400">Links</h1>
|
<h1 className="mb-2 border-b border-neutral-400">Links</h1>
|
||||||
@ -123,7 +123,7 @@ const ResourceForm = ({ resource }: { resource?: AuditoryResource }) => {
|
|||||||
return (
|
return (
|
||||||
<div className="mx-auto flex max-w-2xl flex-col flex-col-reverse divide-x py-4 sm:flex-row">
|
<div className="mx-auto flex max-w-2xl flex-col flex-col-reverse divide-x py-4 sm:flex-row">
|
||||||
<div className="my-5 mr-4 flex flex-col justify-end text-lg font-bold">
|
<div className="my-5 mr-4 flex flex-col justify-end text-lg font-bold">
|
||||||
<ResourceLinkSubForm resource={resource} />
|
<ResourceLinkSubForm /> {/** //resource={resource} /> */}
|
||||||
</div>
|
</div>
|
||||||
<div className="justify-left flex flex-col pb-5">
|
<div className="justify-left flex flex-col pb-5">
|
||||||
<ResourceSummarySubForm resource={resource} />
|
<ResourceSummarySubForm resource={resource} />
|
||||||
|
@ -7,7 +7,7 @@ import { api } from "~/utils/api";
|
|||||||
import { parseQueryData } from "~/utils/parseSearchForm";
|
import { parseQueryData } from "~/utils/parseSearchForm";
|
||||||
import Footer from "~/components/Footer";
|
import Footer from "~/components/Footer";
|
||||||
import Header from "~/components/Header";
|
import Header from "~/components/Header";
|
||||||
import { type Dispatch, type SetStateAction, useEffect, useState, FormEvent } from "react";
|
import { type Dispatch, type SetStateAction, useEffect, useState } from "react";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Quick extension of the resource table designed to query all elements so they can be printed
|
* Quick extension of the resource table designed to query all elements so they can be printed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user