()
| 3558 | |
| 3559 | function wifiHmUndoAp() { |
| 3560 | _wifiHm.predictAps.pop(); |
| 3561 | _wifiHmPersistAp(); |
| 3562 | const st = document.getElementById('wifi-hm-design-status'); |
| 3563 | const n = _wifiHm.predictAps.length; |
| 3564 | if (st) st.textContent = n ? `${n} node${n > 1 ? 's' : ''} placed.` : 'No nodes placed.'; |
| 3565 | wifiHeatmapRender(); |
| 3566 | } |
nothing calls this directly
no test coverage detected