Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit d65de7d

Browse files
committed
0.5.110
1 parent 9984d51 commit d65de7d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/cli/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
2-
export const VERSION = "0.5.109";
2+
export const VERSION = "0.5.110";
33

44
// minimum version of Deno required to run this CLI
55
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)

lib/plugins/toolbar/islands/netzo-toolbar.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ export function DialogFeedbackNetzolabs(props: { state: NetzoState; children: Co
185185
});
186186

187187
const onSubmit = async ({ ...data }: Issue) => {
188-
await fetch(`https://netzolabs-oms.netzo.dev/api/issues`, {
188+
// TODO: update to https://netzolabs.netzo.dev once this is live
189+
await fetch(`https://netzolabs-oms-gjydyhgkth7t.netzo.dev/api/issues`, {
189190
method: "POST",
190191
headers: { "content-type": "application/json" },
191192
body: JSON.stringify(data),

0 commit comments

Comments
 (0)