Skip to content

Commit

Permalink
fix: set dlefault of drops showing move to top false
Browse files Browse the repository at this point in the history
  • Loading branch information
CraftyDragon678 committed Aug 4, 2021
1 parent 5b4430d commit b9ba49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Drops.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const Ongoing = (props: Partial<FlatListProps<Product>>) => {

const Drop = () => {
const ref = useRef<CollapsibleRef>();
const [showingMoveToTop, setShowingMoveToTop] = useState(true);
const [showingMoveToTop, setShowingMoveToTop] = useState(false);
const moveToTop = useCallback(() => {
if (!ref.current) {
return;
Expand Down

0 comments on commit b9ba49d

Please sign in to comment.