× eslint(require-await): Async function has no 'await' expression.
╭─[imports/some/redacted/path/uploadPostMultiImage.ts:3:37]
2 │
3 │ ╭─▶ export const uploadPostMultiImage = async (
4 │ │ imageUrls: string[],
5 │ │ owner: string,
6 │ │ accessToken: string
7 │ │ ): Promise<string[]> => {
8 │ │ const results = [];
9 │ │
10 │ │ for (const url of imageUrls) {
11 │ │ results.push(await uploadPostImage(url, owner, accessToken));
12 │ │ }
13 │ │
14 │ │ return results;
15 │ ╰─▶ };
╰────