update changeset file
Signed-off-by: Camgoz, Fatih <fatih.camgoz@rbc.com>
This commit is contained in:
@@ -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;
|
||||
+ };
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user