Skip to content

Commit

Permalink
fix: removed the passwords page
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutVerhamme committed May 24, 2022
1 parent 1ffca42 commit 974b302
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/components/Settings/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { signOut } from 'firebase/auth';

import ExtensionSetting from './components/Pages/ExtensionSetting';
import FeedbackSetting from './components/Pages/FeedbackSetting';
import PasswordSetting from './components/Pages/PasswordSetting';

import AccountSetting from './components/Pages/AccountSetting';
import HistorySetting from './components/Pages/HistorySetting';
Expand All @@ -14,7 +13,6 @@ import Title from '../Typography/Title';

import { AnnotationIcon } from '@heroicons/react/outline';
import { UserIcon } from '@heroicons/react/outline';
import { LockClosedIcon } from '@heroicons/react/outline';
import { PuzzleIcon } from '@heroicons/react/outline';
import { BookOpenIcon } from '@heroicons/react/outline';
import { InformationCircleIcon } from '@heroicons/react/outline';
Expand Down Expand Up @@ -62,13 +60,6 @@ const Settings = () => {
icon: UserIcon,
},

{
tabName: 'Wachtwoorden',
component: PasswordSetting,
link: 'passwords',
icon: LockClosedIcon,
},

{
tabName: 'Toegankelijkheid',
link: 'extension',
Expand Down Expand Up @@ -148,7 +139,6 @@ const Settings = () => {
/>
}
/>
<Route path="passwords" element={<PasswordSetting />} />
<Route path="extension" element={<ExtensionSetting />} />
<Route path="history" element={<HistorySetting />} />
<Route path="about" element={<AboutSetting />} />
Expand Down

0 comments on commit 974b302

Please sign in to comment.