File tree 1 file changed +3
-7
lines changed
client/src/app/pages/migration-waves
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -86,9 +86,6 @@ export const MigrationWaves: React.FC = () => {
86
86
87
87
const [ isToolbarKebabOpen , setIsToolbarKebabOpen ] =
88
88
React . useState < boolean > ( false ) ;
89
- const [ isRowDropdownOpen , setIsRowDropdownOpen ] = React . useState <
90
- number | null
91
- > ( null ) ;
92
89
93
90
const [ migrationWaveModalState , setWaveModalState ] = React . useState <
94
91
"create" | MigrationWave | null
@@ -390,7 +387,7 @@ export const MigrationWaves: React.FC = () => {
390
387
}
391
388
numRenderedColumns = { numRenderedColumns }
392
389
>
393
- { currentPageItems ?. map ( ( migrationWave , rowIndex ) => {
390
+ { currentPageItems ?. map ( ( migrationWave , rowIndex ) => (
394
391
< Tbody
395
392
key = { migrationWave . id }
396
393
isExpanded = { isCellExpanded ( migrationWave ) }
@@ -468,7 +465,6 @@ export const MigrationWaves: React.FC = () => {
468
465
</ Td >
469
466
< Td isActionCell id = "row-actions" >
470
467
< ActionsColumn
471
- open = { isRowDropdownOpen === migrationWave . id }
472
468
items = { [
473
469
{
474
470
isAriaDisabled :
@@ -566,8 +562,8 @@ export const MigrationWaves: React.FC = () => {
566
562
</ Td >
567
563
</ Tr >
568
564
) : null }
569
- </ Tbody > ;
570
- } ) }
565
+ </ Tbody >
566
+ ) ) }
571
567
</ ConditionalTableBody >
572
568
</ Table >
573
569
< SimplePagination
You can’t perform that action at this time.
0 commit comments