From 585939ad937cf3dc13338fb6100bf47233a4311c Mon Sep 17 00:00:00 2001 From: sylenien Date: Thu, 30 Jun 2022 12:58:18 +0200 Subject: [PATCH] fix(ui): remove unused --- frontend/app/components/BugFinder/SessionList/SessionList.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/app/components/BugFinder/SessionList/SessionList.js b/frontend/app/components/BugFinder/SessionList/SessionList.js index e3491fe0c..46a200192 100644 --- a/frontend/app/components/BugFinder/SessionList/SessionList.js +++ b/frontend/app/components/BugFinder/SessionList/SessionList.js @@ -1,6 +1,5 @@ import React from 'react'; import { connect } from 'react-redux'; -import { observer } from 'mobx-react-lite'; import { Loader, NoContent, Pagination } from 'UI'; import { applyFilter, addAttribute, addEvent } from 'Duck/filters'; import { fetchSessions, addFilterByKeyAndValue, updateCurrentPage, setScrollPosition } from 'Duck/search'; @@ -8,7 +7,6 @@ import SessionItem from 'Shared/SessionItem'; import SessionListHeader from './SessionListHeader'; import { FilterKey } from 'Types/filter/filterType'; import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; -import SettingsStore from 'App/mstore/settingsStore'; // const ALL = 'all'; const PER_PAGE = 10; @@ -79,7 +77,6 @@ export default class SessionList extends React.PureComponent { componentDidMount() { const { scrollY } = this.props; window.scrollTo(0, scrollY); - console.log(SettingsStore) } renderActiveTabContent(list) {