Skip to content

Commit 1d44d8b

Browse files
Merge pull request #85 from Shahnawaz-Sk/stage_10may
fix depth issue
2 parents 78f00fd + 6086f47 commit 1d44d8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/uploadFigmaDesigns.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async (ctx: Context): Promise<string> => {
1212
let queryParams = "";
1313
if (config.figma_ids && config.figma_ids.length > 0) {
1414
const fileIds = config.figma_ids.join(",");
15-
queryParams += `&ids=${fileIds}`;
15+
queryParams += `?ids=${fileIds}`;
1616
}
1717

1818
const authToken = `Basic ${Buffer.from(`${ctx.env.LT_USERNAME}:${ctx.env.LT_ACCESS_KEY}`).toString("base64")}`

0 commit comments

Comments
 (0)