(platform: string)
| 481 | ]; |
| 482 | |
| 483 | function getColumns(platform: string): ColDef[] { |
| 484 | return Columns.filter((c) => !c.hideOnPlatform?.includes(platform)); |
| 485 | } |
| 486 | |
| 487 | function getGridTemplate(platform: string): string { |
| 488 | return getColumns(platform) |
no outgoing calls
no test coverage detected