()
| 454 | } |
| 455 | |
| 456 | export function consumePendingPlanCard() { |
| 457 | const plan = normalizePlanContent(S.pendingPlanContent); |
| 458 | S.pendingPlanContent = ''; |
| 459 | if (!plan) return; |
| 460 | renderPlanCard(plan); |
| 461 | scrollEnd(); |
| 462 | scheduleSessionCacheSave(); |
| 463 | } |
| 464 | |
| 465 | // ---- Image overlay ---- |
| 466 | function showImageOverlay(src) { |
no test coverage detected