()
| 389 | } |
| 390 | |
| 391 | const apply = () => { |
| 392 | if (!rangeStart) return |
| 393 | const bounds = buildRangeBounds(rangeStart, rangeEnd ?? rangeStart, { |
| 394 | showTime, |
| 395 | startTime, |
| 396 | endTime, |
| 397 | }) |
| 398 | onRangeChange(bounds.start, bounds.end) |
| 399 | } |
| 400 | |
| 401 | return ( |
| 402 | <div className={cn('flex w-[256px] flex-col p-2', className)}> |
nothing calls this directly
no test coverage detected