chore: generate

This commit is contained in:
opencode-agent[bot] 2026-08-04 04:38:17 +00:00
parent 0c380f31ac
commit 60e23fee16

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