Skip to content

Commit fd61d52

Browse files
author
dnolen
committed
actually drop eval frames from Chrome
1 parent 9b0281f commit fd61d52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj/cljs/repl/browser.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
(->> st
267267
string/split-lines
268268
(drop 1) ;; drop the error message
269-
(take-while #(not (.startsWith % "\tat eval")))
269+
(take-while #(not (.startsWith % " at eval")))
270270
(map #(chrome-st-el->frame % opts))
271271
(remove nil?)
272272
vec))

0 commit comments

Comments
 (0)