Skip to content

Commit 9104697

Browse files
committed
update provider
1 parent 3f6128c commit 9104697

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/builder/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ if (pathname && pathname !== window.location.pathname) {
107107

108108
root.render(
109109
<ErrorBoundary>
110-
<PostHogProvider client={posthog}>
110+
<PostHogProvider apiKey={process.env.REACT_APP_POSTHOG_KEY} client={posthog}>
111111
<WagmiProvider config={config}>
112112
<QueryClientProvider client={queryClient}>
113113
<RainbowKitProvider>

packages/grant-explorer/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const dataLayer = new DataLayer({
6464
});
6565
root.render(
6666
<React.StrictMode>
67-
<PostHogProvider client={posthog}>
67+
<PostHogProvider apiKey={process.env.REACT_APP_POSTHOG_KEY} client={posthog}>
6868
<WagmiProvider config={config as ResolvedRegister["config"]}>
6969
<QueryClientProvider client={queryClient}>
7070
<RainbowKitProvider>

packages/round-manager/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const landing = (
114114

115115
root.render(
116116
<React.StrictMode>
117-
<PostHogProvider client={posthog}>
117+
<PostHogProvider apiKey={process.env.REACT_APP_POSTHOG_KEY} client={posthog}>
118118
<WagmiProvider config={config}>
119119
<QueryClientProvider client={queryClient}>
120120
<RainbowKitProvider

0 commit comments

Comments
 (0)