From f75570752c08ebf5e65c853b93bdb39358f3bdc9 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 5 Jun 2020 09:17:31 -0400 Subject: [PATCH] Removed unused imports in ScrollableList MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Removed: - unused imports in ScrollableList --- app/javascript/gabsocial/components/scrollable_list.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/javascript/gabsocial/components/scrollable_list.js b/app/javascript/gabsocial/components/scrollable_list.js index 1d635282..b05a52df 100644 --- a/app/javascript/gabsocial/components/scrollable_list.js +++ b/app/javascript/gabsocial/components/scrollable_list.js @@ -1,11 +1,8 @@ import throttle from 'lodash.throttle' import { List as ImmutableList } from 'immutable' -import { BREAKPOINT_EXTRA_SMALL } from '../constants' import IntersectionObserverArticle from './intersection_observer_article' import IntersectionObserverWrapper from '../features/ui/util/intersection_observer_wrapper' -import Responsive from '../features/ui/util/responsive_component' import Block from './block' -import Icon from './icon' import ColumnIndicator from './column_indicator' import LoadMore from './load_more'