remove settings page

This commit is contained in:
Jason Wall 2020-08-06 16:48:24 -04:00
parent 32699e552f
commit d70cc9ca3b
3 changed files with 0 additions and 4 deletions

View File

@ -49,7 +49,6 @@ To get more help on the Angular CLI use `ng help` or go check out the [Angular C
- Show Note Cross References \*\*
- Login
- Help Page
- Remove settings page (don't need them if you have page/note admin)
- Settings for theme
- Custom Colors for Light/Dark modes
- Dark / Light / NightLight Mode

View File

@ -1,13 +1,11 @@
export const PageTitles = {
Search: 'Search',
Help: 'Help',
Settings: 'Settings',
};
export const PageIcons = {
Search: 'search',
Help: 'help',
Settings: 'settings',
};
export const CardIcons = {

View File

@ -48,7 +48,6 @@ const initialState: AppState = {
savedPagesLoaded: false,
mainPages: [
{ title: PageTitles.Search, icon: PageIcons.Search, route: 'search' },
{ title: PageTitles.Settings, icon: PageIcons.Settings, route: 'settings' },
{ title: PageTitles.Help, icon: PageIcons.Help, route: 'help' },
],
error: null,