From ec3fc18a439bbd2e87a24c1fa4bf54fd680bca84 Mon Sep 17 00:00:00 2001 From: Lesley Norton Date: Tue, 17 Dec 2024 10:31:20 -0800 Subject: [PATCH] Actually fetch interventions from client (#159) Fetches intervention list from the client when opening the popup --- src/ui/browserAction/popupPage.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ui/browserAction/popupPage.js b/src/ui/browserAction/popupPage.js index 1e4572b..8a1202f 100644 --- a/src/ui/browserAction/popupPage.js +++ b/src/ui/browserAction/popupPage.js @@ -134,6 +134,9 @@ export class BrowserActionPopup extends LitElement { requestIdleCallback(() => { vpnController.postToApp("featurelist"); }); + requestIdleCallback(() => { + vpnController.postToApp("interventions"); + }); requestIdleCallback(() => { telemetry.record("main_screen"); });