We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42fd7f commit 6086f47Copy full SHA for 6086f47
src/lib/uploadFigmaDesigns.ts
@@ -12,7 +12,7 @@ export default async (ctx: Context): Promise<string> => {
12
let queryParams = "";
13
if (config.figma_ids && config.figma_ids.length > 0) {
14
const fileIds = config.figma_ids.join(",");
15
- queryParams += `&ids=${fileIds}`;
+ queryParams += `?ids=${fileIds}`;
16
}
17
18
const authToken = `Basic ${Buffer.from(`${ctx.env.LT_USERNAME}:${ctx.env.LT_ACCESS_KEY}`).toString("base64")}`
0 commit comments