diff --git a/apps/hub/src/components/upgraded-hub-alert.tsx b/apps/hub/src/components/upgraded-hub-alert.tsx
deleted file mode 100644
index ef965d6c..00000000
--- a/apps/hub/src/components/upgraded-hub-alert.tsx
+++ /dev/null
@@ -1,45 +0,0 @@
-import { useFeatureFlag } from "@/hooks/use-feature-flag";
-import {
- Alert,
- AlertDescription,
- AlertTitle,
- Button,
- Link,
-} from "@rivet-gg/components";
-import { Icon, faGem, faXmark } from "@rivet-gg/icons";
-import { usePostHog } from "posthog-js/react";
-
-export function UpgradedHubAlert() {
- const posthog = usePostHog();
- const isEnabled = useFeatureFlag("hub-upgraded-alert");
-
- if (!isEnabled) {
- return null;
- }
-
- return (
-
-
-
- The Rivet Hub has been upgraded.
-
- Want to switch back? Visit the old hub{" "}
- here.
-
-
-
-
-
-
- );
-}
diff --git a/apps/hub/src/layouts/root.tsx b/apps/hub/src/layouts/root.tsx
index 91d380a0..295e1dff 100644
--- a/apps/hub/src/layouts/root.tsx
+++ b/apps/hub/src/layouts/root.tsx
@@ -36,10 +36,6 @@ const Footer = () => {
return (