added patcher and redirect to homepage if user is logged in
This commit is contained in:
@ -38,7 +38,7 @@ export const columns: ColumnDef<chunithm>[] = [
|
||||
<Skeleton className="mr-2 inline-block h-8 w-8" />
|
||||
) : (
|
||||
<img
|
||||
src={`/JacketArt/${jacketPath}`}
|
||||
src={`/jacketArts/${jacketPath}`}
|
||||
alt="Jacket"
|
||||
className="mr-2 inline-block h-8 w-8"
|
||||
/>
|
||||
@ -113,17 +113,7 @@ export const columns: ColumnDef<chunithm>[] = [
|
||||
},
|
||||
{
|
||||
accessorKey: "FC / AJ",
|
||||
header: ({ column }) => {
|
||||
return (
|
||||
<Button
|
||||
variant="ghost"
|
||||
onClick={() => column.toggleSorting(column.getIsSorted() === "asc")}
|
||||
>
|
||||
FC/AJ
|
||||
{/* <ArrowUpDown className="ml-2 h-4 w-4" /> */}
|
||||
</Button>
|
||||
);
|
||||
},
|
||||
header: "FC / AJ",
|
||||
cell: ({ row }) => (
|
||||
<div className="font-medium">
|
||||
{!row.original.isAllJustice && row.original.isFullCombo && (
|
||||
|
Reference in New Issue
Block a user