Skip to content

Commit

Permalink
docs: Add missing curly bracket (#1297)
Browse files Browse the repository at this point in the history
Just copied some example code into my own code and noticed a missing
curly bracket there.
  • Loading branch information
ciruz authored Aug 28, 2024
1 parent b8198cb commit aaa598f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/docs/usage/messages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Values are required to be alphanumeric and can contain underscores. All other ch
Therefore, e.g. when you're mapping a locale to a human readable string, you should map the dash to an underscore first:

```tsx filename="en.json"
"label": "{locale, select, en_GB {British English} en_US {American English} other {Unknown}"
"label": "{locale, select, en_GB {British English} en_US {American English} other {Unknown}}"
```

```tsx
Expand Down

0 comments on commit aaa598f

Please sign in to comment.