Skip to content

Commit

Permalink
remove val logo
Browse files Browse the repository at this point in the history
  • Loading branch information
b4iterdev committed Feb 12, 2025
1 parent fba3208 commit e6d4cd9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file not shown.
1 change: 1 addition & 0 deletions src/app/client/client.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ <h2 class="title">Choose side for</h2>
<div *ngIf="!isLoading && !error" class="no-session">No active session</div>
</ng-template>
<img
*ngIf="placeholderLogo !== 'none'"
[src]="placeholderLogo"
alt="Placeholder Logo"
class="placeholder-logo"
Expand Down
4 changes: 2 additions & 2 deletions src/app/client/client.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class ClientComponent implements OnDestroy {
map: MapState | null = null;
showSideSelection = false;
vetoOrder: vetoOrder[] = [];
placeholderLogo = 'assets/mics/V_Lockup_Horizontal_Pos_Off-White.png';
placeholderLogo = 'none';

private subscription!: Subscription;
constructor(
Expand All @@ -51,7 +51,7 @@ export class ClientComponent implements OnDestroy {
console.log(session);
this.placeholderLogo =
session.logo === ''
? 'assets/mics/V_Lockup_Horizontal_Pos_Off-White.png'
? 'none'
: session.logo;
this.isLoading = false;
}
Expand Down

0 comments on commit e6d4cd9

Please sign in to comment.