Skip to content

Commit

Permalink
fix(solidr-front-next): fix i18n key
Browse files Browse the repository at this point in the history
  • Loading branch information
tchambard committed Aug 24, 2024
1 parent 3c5c03e commit 2e23ba4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/fronts/solidr-front-next/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export default async function RootLayout({
{(metadata.authors as Author[])?.map(({ name, url }, index) => (
<meta key={index} name="author" content={name} {...(url && { href: url })} />
))}
<meta name="viewport" content={metadata.viewport as string} />
{(metadata.icons as IconDescriptor[])?.map(({ rel, url }, index) => (
<link key={index} rel={rel} href={url as string} />
))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default ({ dialogVisible, setDialogVisible, member }: IEditMemberDialogPr
{...register('memberName', { required: true })}
className="w-full px-4 py-2 text-zinc-900 dark:text-white bg-zinc-100 dark:bg-zinc-800 border border-zinc-300 dark:border-zinc-700 rounded-lg focus:ring-2 focus:ring-customBlue focus:outline-none"
/>
{errors.memberName && <span className="text-red-500 text-sm">{t('session.member.edit.form.memberName.required')}</span>}
{errors.memberName && <span className="text-red-500 text-sm">{t('session.members.edit.form.memberName.required')}</span>}
</div>

<div className="flex space-x-4 pt-4">
Expand Down

0 comments on commit 2e23ba4

Please sign in to comment.