From c5ac7592107578d7ad39610a59b5e5358d079c8e Mon Sep 17 00:00:00 2001 From: Brian Doyle Date: Tue, 30 Apr 2024 12:00:40 -0400 Subject: [PATCH] Fix building an onchain app not rendering (#472) --- .../base-camp/docs/frontend-setup/building-an-onchain-app.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/base-docs/base-camp/docs/frontend-setup/building-an-onchain-app.md b/apps/base-docs/base-camp/docs/frontend-setup/building-an-onchain-app.md index a46d83c4a96..07ced64ae3e 100644 --- a/apps/base-docs/base-camp/docs/frontend-setup/building-an-onchain-app.md +++ b/apps/base-docs/base-camp/docs/frontend-setup/building-an-onchain-app.md @@ -141,16 +141,15 @@ export function Providers(props: { children: ReactNode }) { Open `layout.tsx`. Import your `Providers`, being careful if you use auto-import as there are many other things with similar names in the list. Wrap the `children` in your `return` with the new `Providers`. -:::typescript +```typescript return ( - {children} ); -::: +``` ## Adding the Connect Button