Skip to content

Commit

Permalink
fix: remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Dec 29, 2020
1 parent 727f9fe commit c1aabc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import '@ionic/react/css/display.css';
// import './theme/variables.css';
import './theme/bright.theme.css';
import './theme/dark.theme.css';
import Tutorial from './pages/Tutorial';
// import Tutorial from './pages/Tutorial';
import Settings from './pages/Settings';
import AboutPage from './pages/About';
import { SearchPage } from './pages/Search';
Expand All @@ -34,7 +34,7 @@ interface ContainerProps {
selectedTheme: Theme;
}

const App: React.FC<ContainerProps> = ({ hasSeenTutorial, selectedTheme }) => {
const App: React.FC<ContainerProps> = ({ selectedTheme }) => {
return (
<Suspense fallback="<App Suspense Loading>">
<IonApp className={selectedTheme.className}>
Expand Down
1 change: 0 additions & 1 deletion src/components/Menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
IonHeader,
} from '@ionic/react';
import React from 'react';
import { RouteComponentProps, withRouter } from 'react-router-dom';
import {
settingsOutline,
information,
Expand Down

0 comments on commit c1aabc7

Please sign in to comment.