Skip to content

Commit 2291c89

Browse files
committed
Remove useless collapsable thanks to Fabric
1 parent c084f7c commit 2291c89

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

ts/features/tour/components/GuidedTour.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,5 @@ export const GuidedTour = (props: PropsWithChildren<GuidedTourProps>) => {
3131
props.description
3232
]);
3333

34-
return (
35-
<View ref={viewRef} collapsable={false}>
36-
{props.children}
37-
</View>
38-
);
34+
return <View ref={viewRef}>{props.children}</View>;
3935
};

0 commit comments

Comments
 (0)