@useblu/ocean-react 1.62.0 → 1.62.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -325,7 +325,7 @@ UnorderedListItem.displayName = 'UnorderedListItem';
325
325
 
326
326
  var Accordion = function (_a) {
327
327
  var title = _a.title, description = _a.description, className = _a.className;
328
- var _b = e.useState(false), isCollapsed = _b[0], setIsCollapsed = _b[1];
328
+ var _b = e.useState(true), isCollapsed = _b[0], setIsCollapsed = _b[1];
329
329
  var onHandleAccordion = function () {
330
330
  setIsCollapsed(function (prevState) { return !prevState; });
331
331
  };