Skip to content

Commit 17c223f

Browse files
committed
fix playground
1 parent 9c3db38 commit 17c223f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,7 @@ export function get_stack(label) {
153153
if (line.includes('validate_each_keys')) {
154154
return null;
155155
}
156-
if (
157-
line.includes('svelte/src/internal') ||
158-
(!line.includes('.svelte') && (line.includes('.js') || line.includes('.ts')))
159-
) {
156+
if (line.includes('svelte/src/internal')) {
160157
continue;
161158
}
162159
new_lines.push(line);

0 commit comments

Comments
 (0)