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

Commit

Permalink
0.5.110
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed Jul 2, 2024
1 parent 9984d51 commit d65de7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 2 additions & 1 deletion lib/plugins/toolbar/islands/netzo-toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit d65de7d

Please sign in to comment.