Skip to content

Commit

Permalink
Remove semi in Convex example (#40052)
Browse files Browse the repository at this point in the history
Remove semicolon from Convex example.

## Documentation / Examples

- [x] Make sure the linting passes by running `pnpm lint`
- [x] The examples guidelines are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
  • Loading branch information
thomasballinger committed Aug 29, 2022
1 parent b4f74ee commit 5891dae
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 5891dae

Please sign in to comment.