diff --git a/enjoy/src/renderer/components/preferences/advanced-settings.tsx b/enjoy/src/renderer/components/preferences/advanced-settings.tsx
index 5084d26b..9450dfce 100644
--- a/enjoy/src/renderer/components/preferences/advanced-settings.tsx
+++ b/enjoy/src/renderer/components/preferences/advanced-settings.tsx
@@ -1,6 +1,5 @@
import { t } from "i18next";
-import {
- Button, Separator } from "@renderer/components/ui";
+import { Button, Separator } from "@renderer/components/ui";
import { ResetAllButton } from "@renderer/components";
import { InfoIcon } from "lucide-react";
@@ -11,35 +10,6 @@ export const AdvancedSettings = () => {
{t("advancedSettings")}
-
{t("resetSettings")}
@@ -68,6 +38,35 @@ export const AdvancedSettings = () => {
+
+
+
+
{t("resetAll")}
+
+ {t("logoutAndRemoveAllPersonalData")}
+
+
+
+
+
+
+
+
+
+
+
+ {t("relaunchIsNeededAfterChanged")}
+
+
+
+
+
>
);
};
diff --git a/enjoy/src/renderer/components/preferences/preferences.tsx b/enjoy/src/renderer/components/preferences/preferences.tsx
index 3a942820..de2739fe 100644
--- a/enjoy/src/renderer/components/preferences/preferences.tsx
+++ b/enjoy/src/renderer/components/preferences/preferences.tsx
@@ -1,6 +1,11 @@
import { t } from "i18next";
import { Button, ScrollArea } from "@renderer/components/ui";
-import { BasicSettings, AdvancedSettings, About, Hotkeys } from "@renderer/components";
+import {
+ BasicSettings,
+ AdvancedSettings,
+ About,
+ Hotkeys,
+} from "@renderer/components";
import { useState } from "react";
export const Preferences = () => {
@@ -30,8 +35,8 @@ export const Preferences = () => {
const [activeTab, setActiveTab] = useState
("basic");
return (
-
-
+
+
{t("sidebar.preferences")}
@@ -50,7 +55,7 @@ export const Preferences = () => {
))}
-
+
{TABS.find((tab) => tab.value === activeTab)?.component()}