Refactored case edit pane's jsx and methods

This commit is contained in:
Takeshi Kimata
2024-03-17 17:32:19 +09:00
parent aea08e9c80
commit d94af046c0
9 changed files with 613 additions and 570 deletions

View File

@@ -54,20 +54,6 @@ export default function Page({
return (
<>
{/* <Listbox aria-label="Listbox Variants">
{cases.map((testCase, index) => (
<ListboxItem
key={index}
onClick={() =>
router.push(
`/projects/${params.projectId}/folders/${params.folderId}/cases/${testCase.id}`
)
}
>
{testCase.title}
</ListboxItem>
))}
</Listbox> */}
<TestCaseTable projectId={params.folderId} cases={cases}/>
</>
);