mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
fix: add missing curly braces around props.children in ConditionalCaptchaProvider
This commit is contained in:
parent
7ae8d03994
commit
b485e5dd2c
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ const ConditionalCaptchaProvider = (props: {
|
|||
</GoogleReCaptchaProvider>
|
||||
)
|
||||
}
|
||||
return <>props.children</>
|
||||
return <>{props.children}</>
|
||||
}
|
||||
|
||||
export function OmnivoreApp({ Component, pageProps }: AppProps): JSX.Element {
|
||||
|
|
|
|||
Loading…
Reference in a new issue