diff --git a/components/collapse/component.jsx b/components/collapse/component.jsx
index c5b0e4d22..2b3f7568b 100644
--- a/components/collapse/component.jsx
+++ b/components/collapse/component.jsx
@@ -23,7 +23,7 @@ function getHeight(node) {
return node.scrollHeight;
}
-/** Collapsable accordion component. Useful for nodes that have 'height: auto'. Ported from reactstrap */
+/** Collapsible accordion component. Useful for nodes that have 'height: auto'. Ported from reactstrap */
export const Collapse = forwardClassRef(
class Collapse extends Component {
static propTypes = propTypes;
@@ -102,35 +102,37 @@ export const Collapse = forwardClassRef(
{status => {
const style = height === null ? null : { height };
return (
-
- {children}
-
+ status !== TransitionStatuses.EXITED && (
+
+ {children}
+
+ )
);
}}