Skip to content

Commit

Permalink
DevTools: Make break-on-warn off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jul 10, 2020
1 parent 14084be commit c903d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-devtools-shared/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export function getBreakOnConsoleErrors(): boolean {
return JSON.parse(raw);
}
} catch (error) {}
return true;
return false;
}

export function setBreakOnConsoleErrors(value: boolean): void {
Expand Down

0 comments on commit c903d4c

Please sign in to comment.