()
| 481 | const rendered: ReactNode[] = []; |
| 482 | let flatRun: Integration[] = []; |
| 483 | const flushFlat = () => { |
| 484 | if (flatRun.length === 0) return; |
| 485 | const run = flatRun; |
| 486 | flatRun = []; |
| 487 | rendered.push( |
| 488 | <CardStack key={`flat-${String(run[0]!.slug)}`} searchable> |
| 489 | <CardStackContent>{run.map(renderEntry)}</CardStackContent> |
| 490 | </CardStack>, |
| 491 | ); |
| 492 | }; |
| 493 | |
| 494 | for (const item of items) { |
| 495 | if (item.type === "single") { |