Skip to content

Commit

Permalink
Remove semi in Convex example
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasballinger committed Aug 29, 2022
1 parent b4f74ee commit af95cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/convex/pages/_app.tsx
Expand Up @@ -8,7 +8,7 @@ const convex = new ConvexReactClient(convexConfig.origin)
function MyApp({ Component, pageProps }: AppProps) {
return (
<ConvexProvider client={convex}>
<Component {...pageProps} />;
<Component {...pageProps} />
</ConvexProvider>
)
}
Expand Down

0 comments on commit af95cfc

Please sign in to comment.