diff --git a/web/src/components/proxy-ping.tsx b/web/src/components/proxy-ping.tsx
index 71efccb..d349302 100644
--- a/web/src/components/proxy-ping.tsx
+++ b/web/src/components/proxy-ping.tsx
@@ -30,7 +30,9 @@ export default function ProxyPing({ accountId }: { accountId: string }) {
>
{isLoading && (
-
+
+ testing
+
)}
{!isLoading && error &&
Failed}
{!isLoading && data && (
diff --git a/web/src/components/settings-dialog.tsx b/web/src/components/settings-dialog.tsx
index fe342b9..246e1a6 100644
--- a/web/src/components/settings-dialog.tsx
+++ b/web/src/components/settings-dialog.tsx
@@ -47,7 +47,7 @@ export const SettingsDialog: React.FC = () => {
defaultValue="general"
className="mt-3 flex h-full flex-col overflow-hidden"
>
-
+
General
Statistics
Proxys
diff --git a/web/src/components/ui/toaster.tsx b/web/src/components/ui/toaster.tsx
index deee0d7..07e8165 100644
--- a/web/src/components/ui/toaster.tsx
+++ b/web/src/components/ui/toaster.tsx
@@ -9,12 +9,14 @@ import {
ToastTitle,
ToastViewport,
} from "@/components/ui/toast";
+import useIsMobile from "@/hooks/use-is-mobile";
export function Toaster() {
const { toasts } = useToast();
+ const isMobile = useIsMobile();
return (
-
+
{toasts.map(function ({ id, title, description, action, ...props }) {
return (