From 51ce66c00ff144c019744cb34ba23146c6b7c226 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 19:26:48 +0000 Subject: [PATCH 1/2] Update dependency posthog-node to v5.28.8 (#857) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1fe20e65..8617d9ae 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2394,6 +2394,13 @@ dependencies: cross-spawn "^7.0.6" +"@posthog/core@1.24.3": + version "1.24.3" + resolved "https://registry.yarnpkg.com/@posthog/core/-/core-1.24.3.tgz#5783734d0d92167fe77aff579c61624d48faf1f2" + integrity sha512-nTyL1R/8V5vfdH37MbjXDYWFnUoxVijb2TnfJSNHz0+RBLtNnq0hNnBDCwWLl5yh1bzeJBYTT8UF+dV7D8y03w== + dependencies: + cross-spawn "^7.0.6" + "@posthog/nextjs-config@1.8.24": version "1.8.24" resolved "https://registry.yarnpkg.com/@posthog/nextjs-config/-/nextjs-config-1.8.24.tgz#cedae177495572c303ffae31c646e81e42370f4b" @@ -6117,11 +6124,11 @@ posthog-js@^1.257.0: web-vitals "^5.1.0" posthog-node@^5.5.1: - version "5.28.6" - resolved "https://registry.yarnpkg.com/posthog-node/-/posthog-node-5.28.6.tgz#55e7434743e10feca38284c64f9dc2bb07076938" - integrity sha512-f3k45gplzVxbhIMj3x6jZP6iH1wacBurKrZxD1VwW+7f8L2DtjJbkiQw0oKwubgtCZcKNroPa8y6t/nDITgOMw== + version "5.28.8" + resolved "https://registry.yarnpkg.com/posthog-node/-/posthog-node-5.28.8.tgz#1010182afeb61de5b583dd888e565f595be234b3" + integrity sha512-UD55SdSbgUvoOb3HkvNC22ZgpdeNknDrao8+yYTB/rDnwgaibPB7pJJzgn4j7MIUw7DOTEHEmJRqza1EDtK2Zw== dependencies: - "@posthog/core" "1.24.1" + "@posthog/core" "1.24.3" preact@^10.28.2: version "10.29.0" From 26f34172c85cba0c29873c153259f43a35323392 Mon Sep 17 00:00:00 2001 From: joeboppell Date: Fri, 27 Mar 2026 15:36:32 -0400 Subject: [PATCH 2/2] fix navbar for unauthenticated and registrations off --- src/components/Navbar/index.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index d3a062c1..fc2d216a 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -188,7 +188,16 @@ const Navbar: React.FC = () => { isLoadingRegistrationsFlag === false && registrationsFlagData?.isEnabled ? { href: "/profile", text: "Register" } - : null; + : !isLoading && + isLoadingRegistrationsFlag === false && + !registrationsFlagData?.isEnabled && + !isAuthenticated + ? { + href: "https://auth.hackpsu.org", + text: "Login", + isExternal: true, + } + : null; // Only show photos link for authenticated users (keeps homepage clean for guests) const photosItem =