+ {/* Sidebar */}
+
- {/* Content area */}
-
- {/* Site header */}
-
+ {/* Content area */}
+
+ {/* Site header */}
+
-
-
+
+
- {/* Page header */}
-
- {/* Title */}
-
Validation log ✨
+ {/* Page header */}
+
+ {/* Title */}
+
Validation log ✨
+
-
-
+
+
-
)
}
-export default ValidationLog;
\ No newline at end of file
+export default ValidationLog;
diff --git a/src/pages/settings/Account.jsx b/src/pages/settings/Account.jsx
index ae869b3..246334f 100644
--- a/src/pages/settings/Account.jsx
+++ b/src/pages/settings/Account.jsx
@@ -1,4 +1,4 @@
-import React, { useState } from 'react';
+import React, {useEffect, useState} from 'react';
import Sidebar from '../../partials/Sidebar';
import Header from '../../partials/Header';
@@ -6,7 +6,9 @@ import SettingsSidebar from '../../partials/settings/SettingsSidebar';
import AccountPanel from '../../partials/settings/AccountPanel';
function Account() {
-
+ useEffect(() => {
+ localStorage.setItem('svgKey', '')
+ }, [])
const [sidebarOpen, setSidebarOpen] = useState(false);
return (
@@ -15,7 +17,7 @@ function Account() {
{/* Sidebar */}
- {/* Content area */}
+ {/* Content area */}
{/* Site header */}
@@ -30,7 +32,7 @@ function Account() {
Account Settings ✨
- {/* Content */}
+ {/* Content */}
@@ -42,9 +44,9 @@ function Account() {
-
+
);
}
-export default Account;
\ No newline at end of file
+export default Account;
diff --git a/src/partials/Header.jsx b/src/partials/Header.jsx
index 3bb4cc9..2562075 100644
--- a/src/partials/Header.jsx
+++ b/src/partials/Header.jsx
@@ -65,4 +65,4 @@ function Header({
);
}
-export default Header;
\ No newline at end of file
+export default Header;
diff --git a/src/partials/Sidebar.jsx b/src/partials/Sidebar.jsx
index c43f070..175e7e4 100644
--- a/src/partials/Sidebar.jsx
+++ b/src/partials/Sidebar.jsx
@@ -14,7 +14,6 @@ function Sidebar({
const trigger = useRef(null);
const sidebar = useRef(null);
-
const storedSidebarExpanded = localStorage.getItem('sidebar-expanded');
const [sidebarExpanded, setSidebarExpanded] = useState(storedSidebarExpanded === null ? false : storedSidebarExpanded === 'true');
@@ -1433,6 +1432,34 @@ function Sidebar({
+
+
+
+ Step 1
+
+
+
+
+
+
+ Step 2
+
+
+
+
+
+
+ Step 3
+
+
+
+
+
+
+ Step 4
+
+
+
@@ -1683,4 +1710,4 @@ function Sidebar({
);
}
-export default Sidebar;
\ No newline at end of file
+export default Sidebar;