Skip to content

Commit c7437b3

Browse files
committed
eslint updates
1 parent b55eaf8 commit c7437b3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

components/alttextlab/actions/generate-alt-text/generate-alt-text.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default {
6868
const response = await this.altTextLab.altTextGeneration({
6969
$,
7070
data: {
71-
source: 'pipedream',
71+
source: "pipedream",
7272
imageUrl: this.imageUrl,
7373
lang: this.lang,
7474
style: this.style,
@@ -83,7 +83,7 @@ export default {
8383

8484
});
8585

86-
$.export("$summary", `Alt text has been generated`);
86+
$.export("$summary", "Alt text has been generated");
8787
return response;
8888
},
8989
};

components/alttextlab/alttextlab.app.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ export default {
1414
"x-api-key": `${this.$auth.api_key}`,
1515
};
1616
},
17-
async _makeRequest({$ = this, path, headers, ...otherOptions}) {
17+
async _makeRequest({
18+
$ = this, path, headers, ...otherOptions
19+
}) {
1820
return axios($, {
1921
url: this._baseUrl() + path,
2022
headers: this._headers(headers),

components/alttextlab/common/constants.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export const AI_WRITING_STYLE = [
1515
label: "Minimal",
1616
value: "minimal",
1717
},
18-
]
18+
];

0 commit comments

Comments
 (0)