|
|
@@ -233,7 +233,11 @@ function ResolvedDraftRoute(props: { draft: DraftTab }) {
|
|
|
|
|
|
function UiI18nBridge(props: ParentProps) {
|
|
|
const language = useLanguage()
|
|
|
- return <I18nProvider value={{ locale: language.intl, t: language.t, plural: language.plural }}>{props.children}</I18nProvider>
|
|
|
+ return (
|
|
|
+ <I18nProvider value={{ locale: language.intl, t: language.t, plural: language.plural }}>
|
|
|
+ {props.children}
|
|
|
+ </I18nProvider>
|
|
|
+ )
|
|
|
}
|
|
|
|
|
|
function LayoutCompatibility(props: ParentProps) {
|