diff --git a/packages/cyberstorm/src/components/Layout/Teams/TeamSettings/TeamServiceAccounts/TeamServiceAccounts.tsx b/packages/cyberstorm/src/components/Layout/Teams/TeamSettings/TeamServiceAccounts/TeamServiceAccounts.tsx
index fce710c63..9d8332d2f 100644
--- a/packages/cyberstorm/src/components/Layout/Teams/TeamSettings/TeamServiceAccounts/TeamServiceAccounts.tsx
+++ b/packages/cyberstorm/src/components/Layout/Teams/TeamSettings/TeamServiceAccounts/TeamServiceAccounts.tsx
@@ -5,7 +5,7 @@ import { ServiceAccountList } from "./ServiceAccountList/ServiceAccountList";
import { Dialog } from "../../../../Dialog/Dialog";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faPlus, faCircleExclamation } from "@fortawesome/pro-solid-svg-icons";
-import { TeamLink, UserLink } from "../../../../Links/Links";
+import { UserLink } from "../../../../Links/Links";
import { TextInput } from "../../../../TextInput/TextInput";
import { useState } from "react";
import { CopyButton } from "../../../../CopyButton/CopyButton";
@@ -87,11 +87,7 @@ export function TeamServiceAccounts(props: Props) {
Enter the nickname of the service account you wish to add
to the team{" "}
-
-
- {teamName}
-
-
+ {teamName}
Link({ ...p, url: "/developers/upload-package/" }),
PrivacyPolicy: (p) => Link({ ...p, url: "/privacy-policy/" }),
Settings: (p) => Link({ ...p, url: "/settings/" }),
- Team: (p) => Link({ ...p, url: `/t/${p.team}/` }),
+ Team: (p) => Link({ ...p, url: `/c/${p.community}/p/${p.team}/` }),
Teams: (p) => Link({ ...p, url: "/teams/" }),
TeamSettings: (p) => Link({ ...p, url: `/teams/${p.team}/` }),
TermsOfService: (p) => Link({ ...p, url: "/terms-of-service/" }),