diff --git a/site/src/components/NavbarView/NavbarView.test.tsx b/site/src/components/NavbarView/NavbarView.test.tsx
index 4ff74a1809b64..276976aad3e17 100644
--- a/site/src/components/NavbarView/NavbarView.test.tsx
+++ b/site/src/components/NavbarView/NavbarView.test.tsx
@@ -69,17 +69,6 @@ describe("NavbarView", () => {
expect((auditLink as HTMLAnchorElement).href).toContain("/audit")
})
- it("audit nav link is only visible in development", async () => {
- process.env = {
- ...env,
- NODE_ENV: "production",
- }
-
- render()
- const auditLink = screen.queryByText(navLanguage.audit)
- expect(auditLink).not.toBeInTheDocument()
- })
-
it("audit nav link is hidden for members", async () => {
render()
const auditLink = screen.queryByText(navLanguage.audit)
diff --git a/site/src/components/NavbarView/NavbarView.tsx b/site/src/components/NavbarView/NavbarView.tsx
index 646042cacf9ff..93a3247d5e35b 100644
--- a/site/src/components/NavbarView/NavbarView.tsx
+++ b/site/src/components/NavbarView/NavbarView.tsx
@@ -52,8 +52,7 @@ const NavItems: React.FC<
{Language.users}
- {/* REMARK: the below link is under-construction */}
- {process.env.NODE_ENV !== "production" && canViewAuditLog && (
+ {canViewAuditLog && (
{Language.audit}