Skip to content

Commit 15ae35c

Browse files
💄 style: fix discover translation (#8423)
1 parent e9e11cb commit 15ae35c

File tree

1 file changed

+4
-4
lines changed
  • src/app/[variants]/(main)/discover/(list)/(home)

1 file changed

+4
-4
lines changed

src/app/[variants]/(main)/discover/(list)/(home)/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ export const generateMetadata = async (props: DynamicLayoutProps) => {
1010
const { locale, t } = await parsePageMetaProps(props);
1111
return metadataModule.generate({
1212
alternate: true,
13-
description: t('discover.home.description'),
13+
description: t('discover.description'),
1414
locale,
15-
title: t('discover.home.title'),
15+
title: t('discover.title'),
1616
url: '/discover',
1717
});
1818
};
@@ -21,9 +21,9 @@ const Page = async (props: DynamicLayoutProps) => {
2121
const { locale, t, isMobile } = await parsePageMetaProps(props);
2222

2323
const ld = ldModule.generate({
24-
description: t('discover.home.description'),
24+
description: t('discover.description'),
2525
locale,
26-
title: t('discover.home.title'),
26+
title: t('discover.title'),
2727
url: '/discover',
2828
webpage: {
2929
enable: true,

0 commit comments

Comments
 (0)