Skip to content

Commit

Permalink
Fix CI: run yarn prettier-all (#25163)
Browse files Browse the repository at this point in the history
  • Loading branch information
kassens authored and rickhanlonii committed Oct 5, 2022
1 parent 9190f9b commit bf5faef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/react-devtools-shared/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,9 @@ export function saveComponentFilters(

export function getAppendComponentStack(): boolean {
try {
const raw = localStorageGetItem(LOCAL_STORAGE_SHOULD_APPEND_COMPONENT_STACK_KEY);
const raw = localStorageGetItem(
LOCAL_STORAGE_SHOULD_APPEND_COMPONENT_STACK_KEY,
);
if (raw != null) {
return JSON.parse(raw);
}
Expand Down

0 comments on commit bf5faef

Please sign in to comment.