Skip to content

Commit

Permalink
[dashboard] move org menu left
Browse files Browse the repository at this point in the history
  • Loading branch information
svenefftinge committed Feb 2, 2023
1 parent 90fe8b3 commit 2663b83
Show file tree
Hide file tree
Showing 20 changed files with 541 additions and 603 deletions.
6 changes: 3 additions & 3 deletions components/dashboard/src/AppNotifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import { useEffect, useState } from "react";
import Alert from "./components/Alert";
import { getGitpodService, gitpodHostUrl } from "./service/service";
import { getGitpodService } from "./service/service";

const KEY_APP_NOTIFICATIONS = "gitpod-app-notifications";

Expand Down Expand Up @@ -49,9 +49,9 @@ export function AppNotifications() {
const getManageBilling = () => {
let href;
if (notifications.length === 1) {
href = `${gitpodHostUrl}billing`;
href = "/user/billing";
} else if (notifications.length === 2) {
href = `${gitpodHostUrl}/org-billing`;
href = `/billing`;
}
return (
<span>
Expand Down
Loading

0 comments on commit 2663b83

Please sign in to comment.