From 3cd34da55781ce091361e03527ed8e7c8b014012 Mon Sep 17 00:00:00 2001 From: srgooglo Date: Sat, 1 Oct 2022 03:10:32 +0200 Subject: [PATCH] added `security` & `notifications` tabs to settings --- packages/app/constants/settings/index.js | 25 ++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/packages/app/constants/settings/index.js b/packages/app/constants/settings/index.js index baa9b5e4..cb765a24 100644 --- a/packages/app/constants/settings/index.js +++ b/packages/app/constants/settings/index.js @@ -1,8 +1,9 @@ import AppSettings from "./app" import AccountSettings from "./account" import SecuritySettings from "./security" +import NotificationsSettings from "./notifications" import ApparenceSettings from "./apparence" -import ExtensionsSettings from "./extensions" +//import ExtensionsSettings from "./extensions" export default { app: { @@ -12,22 +13,22 @@ export default { }, account: { icon: "User", - label: "Account", + label: "Profile", settings: AccountSettings }, - security: { - icon: "Shield", - label: "Security", - settings: SecuritySettings - }, apparence: { icon: "Eye", label: "Apparence", settings: ApparenceSettings }, - extensions: { - icon: "MdOutlineWidgets", - label: "Extensions", - settings: ExtensionsSettings - } + security: { + icon: "Shield", + label: "Security", + settings: SecuritySettings + }, + notifications: { + icon: "Bell", + label: "Notifications", + settings: NotificationsSettings + }, } \ No newline at end of file