i18n: minor fixes

This commit is contained in:
2024-02-17 10:14:46 +01:00
parent fa555b6c24
commit fc6243f9b8
6 changed files with 12 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ export const LocationDeleteForm:FC<LocationDeleteFormProps> = ({ location }) =>
{
t.rich("text", {
name:location.name,
strong: (chunks:ReactNode) => `<strong>${chunks}</strong>`,
strong: (chunks:ReactNode) => <strong>{chunks}</strong>,
})
}
</p>