diff --git a/src/pages/profile_settings.tsx b/src/pages/profile_settings.tsx index f590cfa..f53c919 100644 --- a/src/pages/profile_settings.tsx +++ b/src/pages/profile_settings.tsx @@ -4,6 +4,7 @@ import { UrlsTitle } from "@/enums/urls"; import { useAppContext } from "@/providers/AuthProvider"; import { cn } from "@/utils/class-merge"; import { calculatePoints, getCurrentStatus } from "@/utils/status-system"; +import { ArrowRightStartOnRectangleIcon, Cog8ToothIcon } from "@heroicons/react/24/outline"; import { FunctionComponent } from "preact"; import { useLocation } from "preact-iso"; import { useEffect, useState } from "preact/hooks"; @@ -32,9 +33,9 @@ const ProfileSettings: FunctionComponent = () => { updateStatus(); } }; - - window.addEventListener('storage', handleStorage); - return () => window.removeEventListener('storage', handleStorage); + + window.addEventListener("storage", handleStorage); + return () => window.removeEventListener("storage", handleStorage); }, []); return ( @@ -58,17 +59,18 @@ const ProfileSettings: FunctionComponent = () => {
- - +