Skip to content

Commit 42dd118

Browse files
authored
Merge pull request #128 from springload/chore/race-conditions-2
Chore/refactor away unstated to fix SSR
2 parents 78fc8c4 + e63a2ad commit 42dd118

21 files changed

+4405
-4277
lines changed

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
2222
"react/default-props-match-prop-types": "off",
2323
"jsx-a11y/no-static-element-interactions": [0],
24-
"react/destructuring-assignment": "off"
24+
"react/destructuring-assignment": "off",
25+
"react/require-default-props": "off" // because Flow isn't smart enough to derive actual prop types from defaults.
2526
},
2627
"env": {
2728
"jest": true,

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
> All notable changes to this project are documented in this file.
44
> This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55
6+
## [NEXT]()
7+
8+
### Fixed
9+
10+
* Fixes SSR.
11+
612
## [[v2.4.4]](https://github.com/springload/react-accessible-accordion/releases/tag/v2.4.4)
713

814
### Fixed

0 commit comments

Comments
 (0)