Skip to content

Commit a68d4b7

Browse files
committed
fix: fix format for deno fmt check
1 parent cf17b23 commit a68d4b7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/runtime/client/partials.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,8 @@ function revivePartials(
458458
);
459459

460460
// Always generate a unique key for PartialComp to avoid vnode reuse when switching partials, which fixes input value leakage issues.
461-
const uniqueKey = (partialKey !== "" ? partialKey : "partial") + "-" + Date.now();
461+
const uniqueKey = (partialKey !== "" ? partialKey : "partial") + "-" +
462+
Date.now();
462463
const root = h(PartialComp, {
463464
key: uniqueKey,
464465
name: partialName,

0 commit comments

Comments
 (0)