diff --git a/.changeset/fix-abandn.md b/.changeset/fix-abandn.md
new file mode 100644
index 000000000..099e68dd7
--- /dev/null
+++ b/.changeset/fix-abandn.md
@@ -0,0 +1,5 @@
+---
+default: patch
+---
+
+Fix leaving modal looking outsized
diff --git a/src/app/pages/client/sidebar/AccountSwitcherTab.tsx b/src/app/pages/client/sidebar/AccountSwitcherTab.tsx
index 119bbc039..e46d427fe 100644
--- a/src/app/pages/client/sidebar/AccountSwitcherTab.tsx
+++ b/src/app/pages/client/sidebar/AccountSwitcherTab.tsx
@@ -14,6 +14,9 @@ import {
toRem,
Chip,
Spinner,
+ Overlay,
+ OverlayBackdrop,
+ OverlayCenter,
Line,
} from 'folds';
import FocusTrap from 'focus-trap-react';
@@ -38,7 +41,6 @@ import { useUserProfile } from '$hooks/useUserProfile';
import { useMediaAuthentication } from '$hooks/useMediaAuthentication';
import { useSessionProfiles } from '$hooks/useSessionProfiles';
import { useOpenSettings } from '$features/settings';
-import { Modal500 } from '$components/Modal500';
import { createLogger } from '$utils/debug';
import { useClientConfig } from '$hooks/useClientConfig';
import { UnreadBadge, UnreadBadgeCenter } from '$components/unread-badge';
@@ -365,41 +367,53 @@ export function AccountSwitcherTab({ isBottom }: { isBottom?: boolean }) {
/>
{confirmSignOutSession && (
- setConfirmSignOutSession(undefined)}>
-
-
+
+ Sign out
+
+
+
+
+ Are you sure you want to sign out of {confirmSignOutSession.userId}?
+
+
+
+
+
+
+
+
+
+
)}
);