diff --git a/docs/fern/docs/pages/getting-started/components.mdx b/docs/fern/docs/pages/getting-started/components.mdx
index 7e1a03611..9c1a8e6f0 100644
--- a/docs/fern/docs/pages/getting-started/components.mdx
+++ b/docs/fern/docs/pages/getting-started/components.mdx
@@ -44,8 +44,8 @@ export default function Page() {
All of Stack's components are modular and built from smaller primitives. For example, the `` component is composed of the following:
- An ``, which itself is composed of multiple `` components
-- A ``, which has a text field and calls `useStackApp().signInWithMagicLink()`
-- A ``, which has two text fields and calls `useStackApp().signInWithCredential()`
+- A ``, which has a text field and calls `useStackApp().signInWithMagicLink()`
+- A ``, which has two text fields and calls `useStackApp().signInWithCredential()`
You can use these components individually to build a custom sign-in component.
diff --git a/packages/stack/src/index.tsx b/packages/stack/src/index.tsx
index e56f7cccf..f9cc9a456 100644
--- a/packages/stack/src/index.tsx
+++ b/packages/stack/src/index.tsx
@@ -21,8 +21,4 @@ export { OAuthButtonGroup } from "./components/oauth-button-group";
export {
SelectedTeamSwitcher,
- /**
- * @deprecated This was renamed to `SelectedTeamSwitcher`.
- */
- SelectedTeamSwitcher as TeamSwitcher,
} from "./components/selected-team-switcher";