Update eslint to type check
This commit is contained in:
@@ -42,21 +42,25 @@ export default function RaidLayoutList({
|
||||
|
||||
const headElements: React.ReactNode[] = [
|
||||
<div
|
||||
key="name"
|
||||
className="text-nowrap"
|
||||
>
|
||||
Raid Layout Name
|
||||
</div>,
|
||||
<div
|
||||
key="size"
|
||||
className="text-nowrap"
|
||||
>
|
||||
Raid Size
|
||||
</div>,
|
||||
<div
|
||||
key="classGroups"
|
||||
className="text-nowrap"
|
||||
>
|
||||
Class Groups
|
||||
</div>,
|
||||
<div
|
||||
key="actions"
|
||||
className="pl-16"
|
||||
>
|
||||
Actions
|
||||
@@ -64,16 +68,17 @@ export default function RaidLayoutList({
|
||||
];
|
||||
|
||||
const bodyElements: React.ReactNode[][] = raidLayouts.map((raidLayout) => [
|
||||
<div>
|
||||
<div key="name">
|
||||
{raidLayout.raidLayoutName}
|
||||
</div>,
|
||||
<div>
|
||||
<div key="size">
|
||||
{raidLayout.raidSize}
|
||||
</div>,
|
||||
<div>
|
||||
<div key="classGroups">
|
||||
<ClassGroupsByRaidLayoutDisplay raidGroupId={raidGroup.raidGroupId ?? ""} raidLayoutId={raidLayout.raidLayoutId ?? ""}/>
|
||||
</div>,
|
||||
<div
|
||||
key="actions"
|
||||
className="flex flex-row items-center justify-center gap-2 pl-16"
|
||||
>
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user