(type, items, keyFn)
| 18149 | const cached = getCachedWifiNetworkResult(interfaceName); |
| 18150 | if (!cached) { |
| 18151 | return false; |
| 18152 | } |
| 18153 | displayWifiNetworks(cached, { forceInterface: interfaceName, skipInterfaceCheck: true, fromCache: true }); |
| 18154 | return true; |
| 18155 | } |
| 18156 | |
| 18157 | function handleWifiInterfaceChange(event) { |
| 18158 | const nextInterface = (event?.target?.value || '').trim() || null; |
| 18159 | setSelectedWifiInterface(nextInterface); |
| 18160 | } |
| 18161 |
no outgoing calls
no test coverage detected