diff --git a/README.md b/README.md index e9585e6..a2b3ff8 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,6 @@ import { Picker } from 'emoji-mart' search: 'Search', notfound: 'No Emoji Found', skintext: 'Choose your default skin tone', -categorieslabel: 'Emoji categories', // Accessible title for the list of categories categories: { search: 'Search Results', recent: 'Frequently Used', @@ -73,7 +72,8 @@ categories: { symbols: 'Symbols', flags: 'Flags', custom: 'Custom', -} +}, +categorieslabel: 'Emoji categories', // Accessible title for the list of categories ``` #### Sheet sizes diff --git a/src/components/picker/nimble-picker.js b/src/components/picker/nimble-picker.js index dbe552d..d075061 100644 --- a/src/components/picker/nimble-picker.js +++ b/src/components/picker/nimble-picker.js @@ -20,7 +20,6 @@ const I18N = { search: 'Search', notfound: 'No Emoji Found', skintext: 'Choose your default skin tone', - categorieslabel: 'Emoji categories', categories: { search: 'Search Results', recent: 'Frequently Used', @@ -34,6 +33,7 @@ const I18N = { flags: 'Flags', custom: 'Custom', }, + categorieslabel: 'Emoji categories', // Accessible title for the list of categories } export default class NimblePicker extends React.PureComponent {