Skip to content

Commit d4f3efc

Browse files
committed
ESLint fixes
1 parent 5663c31 commit d4f3efc

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

components/formatting/actions/date-time-format/date-time-format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineAction({
4141

4242
$.export("$summary", "Successfully formatted date/time");
4343
return output;
44-
} catch (_err) {
44+
} catch (err) {
4545
throw new ConfigurationError(`**Parse error** - check your input and if the selected format is correct.
4646
4747
${err.message}`);

components/namely/actions/create-user/create-user.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { defineAction, JSONValue } from "@pipedream/types";
1+
import {
2+
defineAction, JSONValue,
3+
} from "@pipedream/types";
24
import dayjs from "dayjs";
35
import namely from "../../app/namely.app";
46

components/namely/actions/update-user/update-user.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { defineAction, JSONValue } from "@pipedream/types";
1+
import {
2+
defineAction, JSONValue,
3+
} from "@pipedream/types";
24
import dayjs from "dayjs";
35
import namely from "../../app/namely.app";
46

0 commit comments

Comments
 (0)