Skip to content

Commit

Permalink
chore: remove links which navigates to old hub
Browse files Browse the repository at this point in the history
  • Loading branch information
jog1t committed Sep 25, 2024
1 parent 1abe8db commit 3cdcb7e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 52 deletions.
45 changes: 0 additions & 45 deletions apps/hub/src/components/upgraded-hub-alert.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions apps/hub/src/layouts/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ const Footer = () => {
return (
<footer className="text-muted-foreground bg-background p-4 text-center text-sm">
<div className="container">
<Link href="https://old.rivet.gg" target="_blank" rel="noreferrer">
Old Version
</Link>{" "}
&bull;{" "}
<Link href="https://rivet.gg/support" target="_blank" rel="noreferrer">
Support
</Link>
Expand Down
3 changes: 0 additions & 3 deletions apps/hub/src/routes/_authenticated.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { UpgradedHubAlert } from "@/components/upgraded-hub-alert";
import { useAuth } from "@/domains/auth/contexts/auth";
import { LoginView } from "@/domains/auth/views/login-view/login-view";
import * as Layout from "@/layouts/page-centered";
Expand All @@ -9,7 +8,6 @@ function Authenticated() {
if (profile?.identity.isRegistered === false) {
return (
<>
<UpgradedHubAlert />
<Layout.Root>
<LoginView />
</Layout.Root>
Expand All @@ -19,7 +17,6 @@ function Authenticated() {

return (
<>
<UpgradedHubAlert />
<Outlet />
</>
);
Expand Down

0 comments on commit 3cdcb7e

Please sign in to comment.