From 0b2318ad616056b27e3d28f87385b527ad7fe528 Mon Sep 17 00:00:00 2001 From: Ryan Sheppard Date: Wed, 28 May 2025 09:56:18 -0400 Subject: [PATCH] fix: expand collapsible when isCollapsible intitialized with `true` --- Collapsible.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Collapsible.js b/Collapsible.js index dc4d3b8..d53cb65 100644 --- a/Collapsible.js +++ b/Collapsible.js @@ -141,7 +141,7 @@ export default class Collapsible extends Component { this.setState({ animating: true }); this._animation = Animated.timing(this.state.height, { useNativeDriver: false, - toValue: height ? height : 0, + toValue: height ? height : 'unset', duration, easing, }).start(() => {