chore: generate

This commit is contained in:
opencode-agent[bot]
2026-08-04 04:38:17 +00:00
parent b1553c2b5c
commit 5535f7d6d1
+5 -1
View File
@@ -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) {