Skip to content

Commit

Permalink
fixed: removed logout button in policy
Browse files Browse the repository at this point in the history
  • Loading branch information
supersu-man committed Jan 26, 2024
1 parent 1c1cbd8 commit 215f0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<button *ngIf="router.url.includes('dashboard/')" pButton class="ml-1" icon="pi pi-dollar" style="height: 35px; width: 35px;" (click)="commonService.addExpensePopop=true"></button>
<button *ngIf="router.url.includes('dashboard/')" pButton class="ml-1" icon="pi pi-user-plus" style="height: 35px; width: 35px;" (click)="commonService.addMemeberPopup=true"></button>
<button *ngIf="router.url.includes('dashboard/')" pButton class="ml-1" [icon]="true ? 'pi pi-eye-slash': 'pi pi-eye'" style="height: 35px; width: 35px;" (click)="commonService.togglePrivacy()"></button>
<button pButton class="ml-1 p-button-danger" icon="pi pi-sign-out" style="height: 35px; width: 35px;" (click)="supabaseService.signOut()"></button>
<button *ngIf="!router.url.includes('policy')" pButton class="ml-1 p-button-danger" icon="pi pi-sign-out" style="height: 35px; width: 35px;" (click)="supabaseService.signOut()"></button>
</div>
</div>
<div class="flex-grow-1">
Expand Down

0 comments on commit 215f0b5

Please sign in to comment.