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 \*\* - Show Note Cross References \*\*
- Login - Login
- Help Page - Help Page
- Remove settings page (don't need them if you have page/note admin)
- Settings for theme - Settings for theme
- Custom Colors for Light/Dark modes - Custom Colors for Light/Dark modes
- Dark / Light / NightLight Mode - Dark / Light / NightLight Mode

View File

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

View File

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