diff --git a/app/assets/javascripts/preferences/PreferencesMenu.ts b/app/assets/javascripts/preferences/PreferencesMenu.ts index 27e59dba1..39115ea29 100644 --- a/app/assets/javascripts/preferences/PreferencesMenu.ts +++ b/app/assets/javascripts/preferences/PreferencesMenu.ts @@ -35,12 +35,12 @@ interface SelectableMenuItem extends PreferencesMenuItem { const PREFERENCES_MENU_ITEMS: PreferencesMenuItem[] = [ { id: 'account', label: 'Account', icon: 'user' }, { id: 'general', label: 'General', icon: 'settings' }, - // { id: 'appearance', label: 'Appearance', icon: 'themes' }, + { id: 'appearance', label: 'Appearance', icon: 'themes' }, { id: 'security', label: 'Security', icon: 'security' }, { id: 'listed', label: 'Listed', icon: 'listed' }, - // { id: 'shortcuts', label: 'Shortcuts', icon: 'keyboard' }, - // { id: 'accessibility', label: 'Accessibility', icon: 'accessibility' }, - // { id: 'get-free-month', label: 'Get a free month', icon: 'star' }, + { id: 'shortcuts', label: 'Shortcuts', icon: 'keyboard' }, + { id: 'accessibility', label: 'Accessibility', icon: 'accessibility' }, + { id: 'get-free-month', label: 'Get a free month', icon: 'star' }, { id: 'help-feedback', label: 'Help & feedback', icon: 'help' }, ]; diff --git a/app/assets/javascripts/preferences/panes/AccountPreferences.tsx b/app/assets/javascripts/preferences/panes/AccountPreferences.tsx index 1b3259f08..265838bcd 100644 --- a/app/assets/javascripts/preferences/panes/AccountPreferences.tsx +++ b/app/assets/javascripts/preferences/panes/AccountPreferences.tsx @@ -23,7 +23,7 @@ export const AccountPreferences = observer( return ( - {appState.enableUnfinishedFeatures && } + ); @@ -33,7 +33,7 @@ export const AccountPreferences = observer( - {appState.enableUnfinishedFeatures && } + ); diff --git a/app/assets/javascripts/preferences/panes/Extensions.tsx b/app/assets/javascripts/preferences/panes/Extensions.tsx index a92428bdf..5bf8b8f01 100644 --- a/app/assets/javascripts/preferences/panes/Extensions.tsx +++ b/app/assets/javascripts/preferences/panes/Extensions.tsx @@ -65,7 +65,9 @@ export const Extensions: FunctionComponent<{ }; const visibleExtensions = extensions - .filter(extension => !['modal', 'rooms'].includes(extension.area)); + .filter((extension) => { + return extension.package_info != undefined && !['modal', 'rooms'].includes(extension.area); + }); return (
diff --git a/app/assets/javascripts/preferences/panes/HelpFeedback.tsx b/app/assets/javascripts/preferences/panes/HelpFeedback.tsx index d2a1d0d19..4fe16cf73 100644 --- a/app/assets/javascripts/preferences/panes/HelpFeedback.tsx +++ b/app/assets/javascripts/preferences/panes/HelpFeedback.tsx @@ -80,16 +80,21 @@ export const HelpAndFeedback: FunctionComponent = () => ( - Slack group + Community groups Want to meet other passionate note-takers and privacy enthusiasts? - Want to share your feedback with us? Join the Standard Notes Slack - group for discussions on security, themes, editors and more. + Want to share your feedback with us? Join the Standard Notes community + groups for discussions on security, themes, editors and more. + diff --git a/app/assets/javascripts/preferences/panes/account/Credentials.tsx b/app/assets/javascripts/preferences/panes/account/Credentials.tsx index 98613703c..2e0351898 100644 --- a/app/assets/javascripts/preferences/panes/account/Credentials.tsx +++ b/app/assets/javascripts/preferences/panes/account/Credentials.tsx @@ -33,16 +33,14 @@ export const Credentials: FunctionComponent = observer(({ application, ap You're signed in as {user?.email} - {appState.enableUnfinishedFeatures && ( -