Need help with an *ngIf statement using OR in Angular, but the second condition is not working as expected.
See below for the code:
<div *ngIf="router.url != '/one' || router.url != '/two'">
show something
</div>
Any suggestions on how to fix this issue?