Skip to content

Commit 908272a

Browse files
committed
fix: Remove cors proxy
1 parent 275d099 commit 908272a

File tree

1 file changed

+1
-2
lines changed
  • website/templates/pages/demo

1 file changed

+1
-2
lines changed

website/templates/pages/demo/demo.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ function prepareRequest(url: string): Request {
106106
} else if ((values = bitbucketPrUrl.exec(url))) {
107107
fetchUrl = bitbucketUrlGen(values[1], values[2], 'pullrequests', values[3]);
108108
} else {
109-
console.info('Could not parse url, using the provided url.');
110-
fetchUrl = 'https://crossorigin.me/' + url;
109+
fetchUrl = url;
111110
}
112111

113112
return {

0 commit comments

Comments
 (0)