From 8a9935fde0e56b0c2d8ad9324f3f2a25e4151505 Mon Sep 17 00:00:00 2001 From: Gaspard Wierzbinski Date: Sun, 25 Aug 2024 15:30:19 +0200 Subject: [PATCH] fix: :bug: Fix incorrect type definition --- app/extensions/vanity/page.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/extensions/vanity/page.mdx b/app/extensions/vanity/page.mdx index 437b819..3b6d3bb 100644 --- a/app/extensions/vanity/page.mdx +++ b/app/extensions/vanity/page.mdx @@ -41,8 +41,8 @@ All properties are optional. Audio format (e.g. `audio/mpeg`). - - An array of pronouns the user uses. Can be represented as a string or an object. + + An array of internationalized pronouns the user uses. Can be represented as a string or an object. ```typescript /* e.g. "he/him" */ @@ -57,6 +57,8 @@ All properties are optional. } type Pronoun = ShortPronoun | LongPronoun; + /* Example: en-US or fr */ + type LanguageCode = string; ``` @@ -132,4 +134,4 @@ All properties are optional. ``` - \ No newline at end of file +