From d65de7d0760e66c474914c7273b66cecfdf2981c Mon Sep 17 00:00:00 2001 From: Miguel Romero Karam Date: Wed, 3 Jul 2024 01:11:05 +0200 Subject: [PATCH] 0.5.110 --- lib/cli/src/version.ts | 2 +- lib/plugins/toolbar/islands/netzo-toolbar.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/cli/src/version.ts b/lib/cli/src/version.ts index ae898ef4..1cf2f5e8 100644 --- a/lib/cli/src/version.ts +++ b/lib/cli/src/version.ts @@ -1,5 +1,5 @@ // latest version of netzo/cli (see https://github.com/netzo/netzo/releases) -export const VERSION = "0.5.109"; +export const VERSION = "0.5.110"; // minimum version of Deno required to run this CLI // (see https://github.com/denoland/deployctl/blob/main/src/version.ts) diff --git a/lib/plugins/toolbar/islands/netzo-toolbar.tsx b/lib/plugins/toolbar/islands/netzo-toolbar.tsx index 6b2aa285..13da3f0f 100644 --- a/lib/plugins/toolbar/islands/netzo-toolbar.tsx +++ b/lib/plugins/toolbar/islands/netzo-toolbar.tsx @@ -185,7 +185,8 @@ export function DialogFeedbackNetzolabs(props: { state: NetzoState; children: Co }); const onSubmit = async ({ ...data }: Issue) => { - await fetch(`https://netzolabs-oms.netzo.dev/api/issues`, { + // TODO: update to https://netzolabs.netzo.dev once this is live + await fetch(`https://netzolabs-oms-gjydyhgkth7t.netzo.dev/api/issues`, { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify(data),