Skip to content

Commit

Permalink
fix: revert url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov committed Jun 20, 2023
1 parent a2cfe0a commit c86a9d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kotlin-playground",
"version": "1.28.0-alpha.3",
"version": "1.28.0-alpha.4",
"description": "Self-contained component to embed in websites for running Kotlin code",
"keywords": [
"kotlin",
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const API_URLS = {
url = `${this.server}/api/${version}/compiler/translate?ir=true`;
break;
case TargetPlatform.WASM:
url = `${this.server}api/${version}/compiler/translate?ir=true&compiler=wasm`;
url = `${this.server}/api/${version}/compiler/translate?ir=true&compiler=wasm`;
break;
case TargetPlatform.JUNIT:
url = `${this.server}/api/${version}/compiler/test`;
Expand Down

0 comments on commit c86a9d4

Please sign in to comment.