Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroxaa committed Oct 24, 2023
1 parent 7b00156 commit 6be768d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ export class RebyteAPI {
console.log("ext: ", ext)
console.log("fi: ", fi)
const exts = await this.trpc["gcp.createUploadSignedUrl"].mutate({
fileName: fi,
fileType: ext,
});
input: {
fileName: fi,
fileType: ext,
}
})
console.log("exts: ", exts)
return exts["json"];
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "v0.2.1";
export const version = "v0.2.2";

0 comments on commit 6be768d

Please sign in to comment.