Skip to content

Commit

Permalink
Allow react-devtools-inline createStore() method to override Store co…
Browse files Browse the repository at this point in the history
…nfig params
  • Loading branch information
bvaughn committed Apr 7, 2022
1 parent f56dfe9 commit 1a97e70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react-devtools-inline/src/frontend.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ export function createStore(bridge: FrontendBridge, config?: Config): Store {
checkBridgeProtocolCompatibility: true,
supportsTraceUpdates: true,
supportsTimeline: true,
supportsNativeInspection: config?.supportsNativeInspection !== false,
supportsNativeInspection: true,
...config,
});
}

Expand Down

0 comments on commit 1a97e70

Please sign in to comment.