mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-16 04:11:29 +00:00
Added semi colon
This commit is contained in:
@@ -85,7 +85,7 @@ const CollectionItem = ({ item, collectionUid, collectionPathname, searchText })
|
||||
useEffect(() => {
|
||||
dragPreview(getEmptyImage(), { captureDraggingState: true });
|
||||
}, []);
|
||||
|
||||
|
||||
// Auto-scroll to show this item when its tab becomes active
|
||||
useEffect(() => {
|
||||
if (isTabForItemActive && ref.current) {
|
||||
@@ -95,7 +95,7 @@ const CollectionItem = ({ item, collectionUid, collectionPathname, searchText })
|
||||
// ignore scroll errors (some environments may not support smooth scrolling)
|
||||
}
|
||||
}
|
||||
}, [isTabForItemActive])
|
||||
}, [isTabForItemActive]);
|
||||
|
||||
const determineDropType = (monitor) => {
|
||||
const hoverBoundingRect = ref.current?.getBoundingClientRect();
|
||||
|
||||
Reference in New Issue
Block a user