From 9dca2e414cbe72be0297c0c30a3257d7826d097c Mon Sep 17 00:00:00 2001 From: AkashNegi1 Date: Fri, 3 Jul 2026 16:23:39 +0530 Subject: [PATCH] Bugfix/missing 'Sign in' button on the landing page for unauthenticated users --- CHANGELOG.md | 1 + apps/client/src/app/components/header/header.component.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8be159930..11cfab210 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed the missing "Sign in" button on the landing page for unauthenticated users - Fixed the validation of the data source field of an asset profile with market data - Fixed a recurring issue where single-value fields were incorrectly validated as arrays in various endpoints diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index ae3121861..35f072d72 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -332,7 +332,7 @@ } - @if (user() === null) { + @if (!user()) {