added title to scores tables
This commit is contained in:
@ -4,10 +4,9 @@ import { Skeleton } from "../ui/skeleton";
|
||||
|
||||
interface ImageCellProps {
|
||||
jacketPath: string | undefined;
|
||||
title: string;
|
||||
}
|
||||
|
||||
const ImageCell: React.FC<ImageCellProps> = ({ jacketPath, title }) => {
|
||||
const ImageCell: React.FC<ImageCellProps> = ({ jacketPath }) => {
|
||||
const [isLoading, setIsLoading] = useState(true);
|
||||
|
||||
const handleImageLoad = () => {
|
||||
@ -33,7 +32,6 @@ const ImageCell: React.FC<ImageCellProps> = ({ jacketPath, title }) => {
|
||||
) : (
|
||||
<Skeleton className="inline-block h-[100px] w-[100px]" />
|
||||
)}
|
||||
<span className="truncate">{title}</span>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user