Skip to content

Commit 2f7319c

Browse files
committed
fix
1 parent aafa27f commit 2f7319c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export function VariableDeclaration(node, context) {
235235
location ? b.literal(location) : undefined
236236
);
237237

238-
call = b.call(b.await(b.call('$.save', call)));
238+
if (!parallelize) call = b.call(b.await(b.call('$.save', call)));
239239
if (dev) call = b.call('$.tag', call, b.literal(declarator.id.name));
240240

241241
derived_declarators.push(b.declarator(declarator.id, call));

0 commit comments

Comments
 (0)