Skip to content

Commit

Permalink
fix(use-data-query): drop context sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
ismay committed Jul 20, 2021
1 parent 2e82289 commit f9af172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/data/src/react/components/DataProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const DataProvider = (props: ProviderInput): JSX.Element => {
const context = { engine }

return (
<QueryClientProvider client={queryClient} contextSharing>
<QueryClientProvider client={queryClient}>
<DataContext.Provider value={context}>
{props.children}
</DataContext.Provider>
Expand Down

0 comments on commit f9af172

Please sign in to comment.