1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-10-16 07:17:28 +00:00

Pass lang down

This commit is contained in:
Steffo 2024-09-13 23:50:42 +02:00
parent a39ec41a19
commit cd05b15c7b
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -13,7 +13,7 @@ export function BoardEditor({className, lang, t, editorHook}: {className?: strin
return (
<section className={cn(style.boardEditor, className)}>
<TaskEditor t={t} editorHook={editorHook}/>
<TaskEditor lang={lang} t={t} editorHook={editorHook}/>
</section>
)
}