Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update canister URLs #272

Merged
merged 3 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Below are the default key bindings for commonly used features supported in the e
## Commands

- `Motoko: Restart language server`: Starts (or restarts) the language server
- `Motoko: Deploy (20 minutes)`: Temporarily deploys the currently open file to the Internet Computer via [Motoko Playground](https://m7sm4-2iaaa-aaaab-qabra-cai.raw.ic0.app/)
- `Motoko: Deploy (20 minutes)`: Temporarily deploys the currently open file to the Internet Computer via [Motoko Playground](https://play.motoko.org/)
- `Motoko: Import Mops Package...`: Search, install and import a package from [Mops](https://mops.one)

[![Motoko Playground deployment](https://github.com/dfinity/vscode-motoko/raw/master/guide/assets/deploy.png)](https://marketplace.visualstudio.com/items?itemName=dfinity-foundation.vscode-motoko)
Expand Down
3 changes: 1 addition & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
tests,
window,
workspace,
Disposable,
} from 'vscode';
import {
LanguageClient,
Expand Down Expand Up @@ -434,7 +433,7 @@ async function deployPlayground(_context: ExtensionContext, uri: string) {
}
panel.webview.html = `
<iframe
src="https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.ic0.app/?id=${
src="https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.icp0.io/?id=${
result.canisterId
}&tag=${tag++}"
style="width:100vw; height:100vh; border:none"
Expand Down
Loading