From 4d6426eab2b8ee4d82034fc7fad8c51f56b1ea34 Mon Sep 17 00:00:00 2001 From: Manoah Tervoort <149895ja@gmail.com> Date: Fri, 22 Nov 2024 16:34:23 +0100 Subject: [PATCH] docs: fix meta tags --- docs/utils/locales.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/utils/locales.ts b/docs/utils/locales.ts index 5dad3aeff8..fd521556b0 100644 --- a/docs/utils/locales.ts +++ b/docs/utils/locales.ts @@ -24,8 +24,8 @@ const mapLocale = ( } => ({ description: msg.description, head: [ - ['meta', { content: msg.title, property: 'application-name' }], - ['meta', { content: msg.title, property: 'apple-mobile-web-app-title' }], + ['meta', { content: msg.title, name: 'application-name' }], + ['meta', { content: msg.title, name: 'apple-mobile-web-app-title' }], ['meta', { content: msg.title, property: 'og:site_name' }], ['meta', { content: msg.description, property: 'og:description' }], ['meta', { content: lang, property: 'og:locale' }],