update changeset file

Signed-off-by: Camgoz, Fatih <fatih.camgoz@rbc.com>
This commit is contained in:
Camgoz, Fatih
2025-05-16 14:51:49 -04:00
parent c0f43dc2ae
commit 57eeb16233
-14
View File
@@ -3,17 +3,3 @@
---
visualstudio.com domains are now supported along with dev.azure.com
```diff
+ const isCloud = (host: string) => {
+ if (host === 'dev.azure.com') {
+ return true;
+ }
+
+ if (host.endsWith('.visualstudio.com')) {
+ return true;
+ }
+
+ return false;
+ };
```