Skip to content

Commit

Permalink
React v17 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Holloway committed Feb 8, 2021
1 parent 44b45de commit e0dc05b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-accessible-accordion",
"version": "3.3.1",
"version": "3.3.4",
"description": "Accessible Accordion component for React",
"main": "dist/umd/index.js",
"module": "dist/es/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/AccordionItemPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const AccordionItemPanel = ({
className = 'accordion__panel',
id,
...rest
}: Props) => {
}: Props): JSX.Element => {
const renderChildren = ({ panelAttributes }: ItemContext): JSX.Element => {
if (id) {
assertValidHtmlId(id);
Expand Down

0 comments on commit e0dc05b

Please sign in to comment.