Skip to content

Commit 9195e4e

Browse files
committed
updates
1 parent 48ccc96 commit 9195e4e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

components/imgur/actions/upload-image/upload-image.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default {
3434

3535
const res = await this.imgur.uploadImage(base64);
3636

37-
if (!res.status == 200) {
37+
if (res.status !== 200) {
3838
$.export("response", res);
3939
if ($.flow) {
4040
return $.flow.exit("Failed to upload.");
File renamed without changes.

components/voilanorbert/voilanorbert.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { axios } from "@pipedream/platform";
2-
import { objectToString } from "./utils.mjs";
2+
import { objectToString } from "./common/utils.mjs";
33

44
export default {
55
type: "app",

0 commit comments

Comments
 (0)