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

@@ -28051,9 +28051,7 @@
"license": "MIT"
},
"node_modules/lodash-es": {
"version": "4.17.23",
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.23.tgz",
"integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
"version": "4.17.21",
"license": "MIT"
},
"node_modules/lodash.camelcase": {

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));
}