diff --git a/.changeset/wise-teeth-study.md b/.changeset/wise-teeth-study.md index 5e85fcf23e..0695f98335 100644 --- a/.changeset/wise-teeth-study.md +++ b/.changeset/wise-teeth-study.md @@ -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; -+ }; -```