Skip to content

Commit e88150f

Browse files
committed
lint
1 parent 4735d64 commit e88150f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/svelte/src/internal/client/dev/tracing.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ export function trace(fn, label, computed) {
140140
changed:
141141
tracing_expression_reactive === REACTIVE_CHANGED ||
142142
tracing_expression_reactive === REACTIVE_CHANGED_CACHED,
143-
label: label + (tracing_expression_reactive === REACTIVE_CHANGED_CACHED ? ' [cached derived]' : ''),
143+
label:
144+
label +
145+
(tracing_expression_reactive === REACTIVE_CHANGED_CACHED ? ' [cached derived]' : ''),
144146
value,
145147
time,
146148
stacks: set_stack ? [read_stack, set_stack] : [read_stack],

0 commit comments

Comments
 (0)