fix type errors
This commit is contained in:
parent
ee86d453ba
commit
954c11101c
@ -49,7 +49,7 @@ export const ResourceInfo = ({
|
||||
<ResourcePhoto
|
||||
name={resource.name}
|
||||
photo={resource.photo}
|
||||
src={resource.icon}
|
||||
src={resource.icon ?? undefined}
|
||||
/>
|
||||
<span className="block rounded-lg border border-neutral-900 bg-neutral-900 py-[1px] text-center text-white hover:bg-neutral-500 print:hidden">
|
||||
more info
|
||||
@ -61,7 +61,7 @@ export const ResourceInfo = ({
|
||||
<ResourcePhoto
|
||||
name={resource.name}
|
||||
photo={resource.photo}
|
||||
src={resource.icon}
|
||||
src={resource.icon ?? undefined}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { ExclamationCircleIcon } from "@heroicons/react/24/solid";
|
||||
import Link from "next/link";
|
||||
import { useEffect, useState } from "react";
|
||||
import { type ButtonHTMLAttributes, useEffect, useState } from "react";
|
||||
|
||||
const AdminActionBody = ({
|
||||
label,
|
||||
@ -49,7 +49,7 @@ const AdminActionConfirmButton = ({
|
||||
label: string;
|
||||
onConfirm?: () => void;
|
||||
symbol: JSX.Element | undefined;
|
||||
type?: HTMLButtonElement["type"];
|
||||
type?: ButtonHTMLAttributes<HTMLButtonElement>["type"];
|
||||
}) => {
|
||||
const [isConfirmView, setConfirmView] = useState(false);
|
||||
|
||||
@ -96,7 +96,7 @@ const AdminActionButton = ({
|
||||
label: string;
|
||||
onClick?: () => void;
|
||||
symbol: JSX.Element | undefined;
|
||||
type?: HTMLButtonElement["type"];
|
||||
type?: ButtonHTMLAttributes<HTMLButtonElement>["type"];
|
||||
}) => {
|
||||
return (
|
||||
<button
|
||||
|
@ -93,7 +93,7 @@ const SelectImageInput = () => {
|
||||
<ResourcePhoto
|
||||
name={name ?? "unknown resource logo"}
|
||||
photo={photo}
|
||||
src={icon}
|
||||
src={icon ?? undefined}
|
||||
/>
|
||||
<div className="absolute bottom-0 left-0 right-0 top-0 hidden place-items-center group-hover:grid group-hover:bg-white/70">
|
||||
<PencilSquareIcon className="w-16 text-black/50" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user