diff --git a/stories/LassoSelect.stories.tsx b/stories/LassoSelect.stories.tsx index ca174d4..40dc38f 100644 --- a/stories/LassoSelect.stories.tsx +++ b/stories/LassoSelect.stories.tsx @@ -87,34 +87,32 @@ function TwoDPointCloudWithSelect(props) { }, []); return ( -
- - - - { - props.onChange(selection); - }} - enabled={selectedTool === 'select'} - /> - - { - if (props.selectedPoints.includes(p.metaData.uuid)) { - return '#40E0D0'; - } else if (props.selectedPoints.length) { - return '#216c64'; - } + + + + { + props.onChange(selection); + }} + enabled={selectedTool === 'select'} + /> + + { + if (selectedPoints.includes(p.metaData.uuid)) { return '#40E0D0'; - }, - }} - /> - - -
+ } else if (props.selectedPoints.length) { + return '#216c64'; + } + return '#40E0D0'; + }, + }} + /> + + ); }