Skip to content

Commit 2663b83

Browse files
committed
[dashboard] move org menu left
1 parent 90fe8b3 commit 2663b83

20 files changed

+541
-603
lines changed

components/dashboard/src/AppNotifications.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import { useEffect, useState } from "react";
88
import Alert from "./components/Alert";
9-
import { getGitpodService, gitpodHostUrl } from "./service/service";
9+
import { getGitpodService } from "./service/service";
1010

1111
const KEY_APP_NOTIFICATIONS = "gitpod-app-notifications";
1212

@@ -49,9 +49,9 @@ export function AppNotifications() {
4949
const getManageBilling = () => {
5050
let href;
5151
if (notifications.length === 1) {
52-
href = `${gitpodHostUrl}billing`;
52+
href = "/user/billing";
5353
} else if (notifications.length === 2) {
54-
href = `${gitpodHostUrl}/org-billing`;
54+
href = `/billing`;
5555
}
5656
return (
5757
<span>

0 commit comments

Comments
 (0)