File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " react-scan" ,
3- "version" : " 0.4.0 " ,
3+ "version" : " 0.4.1 " ,
44 "description" : " Scan your React app for renders" ,
55 "keywords" : [
66 " react" ,
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ import { IS_CLIENT } from "~web/utils/constants";
66import { scan } from "./index" ;
77
88if ( IS_CLIENT ) {
9- scan ( {
10- dangerouslyForceRunInProduction : true
11- } ) ;
9+ scan ( ) ;
1210 window . reactScan = scan ;
1311}
1412
Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ export const Widget = () => {
430430 let rafId : number | null = null ;
431431 let hasExpanded = false ;
432432
433- const DRAG_THRESHOLD = 50 ;
433+ const DRAG_THRESHOLD = 50 ;
434434
435435 const handlePointerMove = ( e : globalThis . PointerEvent ) => {
436436 if ( hasExpanded || rafId ) return ;
You can’t perform that action at this time.
0 commit comments