Skip to content

Commit

Permalink
fix(build): reduce figma fetch size (#630)
Browse files Browse the repository at this point in the history
  • Loading branch information
geotrev authored Aug 15, 2024
1 parent 91d8d13 commit b99a2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/gatsby-source-garden-content/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export async function fetchFigmaImages({
nodeIds: string[];
scale: number;
}) {
const chunks = chunk(nodeIds, 40);
const chunks = chunk(nodeIds, 20);
let images: Record<string, string> = {};

for await (const value of chunks) {
Expand Down

0 comments on commit b99a2a5

Please sign in to comment.