diff --git a/package.json b/package.json index 82d4e94..e6f30d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "1.6.8", + "version": "1.6.9", "author": "lingdocs.com", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "homepage": "https://verbs.lingdocs.com", diff --git a/src/components/ButtonSelect.tsx b/src/components/ButtonSelect.tsx index e4a9eaf..16132bc 100644 --- a/src/components/ButtonSelect.tsx +++ b/src/components/ButtonSelect.tsx @@ -17,33 +17,29 @@ type PickerProps = { } function ButtonSelect(props: PickerProps) { - return ( -
-
- {props.options.map((option) => ( - - ))} -
-
- ); + return
+ {props.options.map((option) => ( + + ))} +
} export default ButtonSelect;