Skip to content

Commit 9ffe3b7

Browse files
authored
Merge pull request #6090 from ethereum/fixlogingithub
fix url to fix github login
2 parents bce86e8 + ae246ea commit 9ffe3b7

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

apps/vyper/src/app/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const App = () => {
108108
}
109109

110110
function compilerUrl() {
111-
return state.environment === 'remote' ? `${endpointUrls.vyper2}` : state.localUrl
111+
return state.environment === 'remote' ? `${endpointUrls.vyper2}/` : state.localUrl
112112
}
113113

114114
function resetCompilerResultState() {

libs/endpoints-helper/src/index.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ type EndpointUrls = {
1616
};
1717

1818
const defaultUrls: EndpointUrls = {
19-
corsProxy: 'https://gitproxy.api.remix.live/',
20-
solidityScan: 'https://solidityscan.api.remix.live/',
21-
ipfsGateway: 'https://jqgt.api.remix.live/',
22-
commonCorsProxy: 'https://common-corsproxy.api.remix.live/',
23-
github: 'https://github.api.remix.live/',
24-
solcoder: 'https://solcoder.api.remix.live/',
25-
ghfolderpull: 'https://ghfolderpull.api.remix.live/',
26-
embedly: 'https://embedly.api.remix.live/',
27-
gptChat: 'https://gpt-chat.api.remix.live/',
28-
rag: 'https://rag.api.remix.live/',
29-
vyper2: 'https://vyper2.api.remix.live/',
30-
completion: 'https://completion.api.remix.live/',
31-
solidityScanWebSocket: 'wss://solidityscan.api.remix.live/',
32-
gitHubLoginProxy: 'https://github-login-proxy.api.remix.live/',
19+
corsProxy: 'https://gitproxy.api.remix.live',
20+
solidityScan: 'https://solidityscan.api.remix.live',
21+
ipfsGateway: 'https://jqgt.api.remix.live',
22+
commonCorsProxy: 'https://common-corsproxy.api.remix.live',
23+
github: 'https://github.api.remix.live',
24+
solcoder: 'https://solcoder.api.remix.live',
25+
ghfolderpull: 'https://ghfolderpull.api.remix.live',
26+
embedly: 'https://embedly.api.remix.live',
27+
gptChat: 'https://gpt-chat.api.remix.live',
28+
rag: 'https://rag.api.remix.live',
29+
vyper2: 'https://vyper2.api.remix.live',
30+
completion: 'https://completion.api.remix.live',
31+
solidityScanWebSocket: 'wss://solidityscan.api.remix.live',
32+
gitHubLoginProxy: 'https://github-login-proxy.api.remix.live',
3333
};
3434

3535
const endpointPathMap: Record<keyof EndpointUrls, string> = {

0 commit comments

Comments
 (0)