opencode-agent[bot] 1 неделя назад
Родитель
Сommit
60e23fee16
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      packages/app/src/app.tsx

+ 5 - 1
packages/app/src/app.tsx

@@ -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) {