Compare commits

..

1 Commits

Author SHA1 Message Date
Asier Isayas
2da6627137 test 2026-01-30 09:52:16 -08:00
2 changed files with 2 additions and 3 deletions

4
package-lock.json generated
View File

@@ -28047,9 +28047,7 @@
}
},
"node_modules/lodash": {
"version": "4.17.23",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
"integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
"version": "4.17.21",
"license": "MIT"
},
"node_modules/lodash-es": {

View File

@@ -35,6 +35,7 @@ export async function fetchSubscriptions(accessToken: string = ""): Promise<Subs
(sub) => sub.state === "Enabled" || sub.state === "Warned" || sub.state === "PastDue",
);
subscriptions = [...subscriptions, ...validSubscriptions];
console.log("test")
}
return subscriptions.sort((a, b) => a.displayName.localeCompare(b.displayName));
}