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.
2 parents 78f00fd + 6086f47 commit 1d44d8bCopy full SHA for 1d44d8b
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