Skip to content

Commit

Permalink
Aplicando prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiusmiskinis committed May 15, 2022
1 parent 0220647 commit ad27af9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/navbar/navbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { fadeIn, slideDownHideUp } from 'src/app/config/animations.config';
selector: 'topnav',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.css'],
animations: [fadeIn, slideDownHideUp]
animations: [fadeIn, slideDownHideUp],
})
export class NavbarComponent {
@Input() toggleBlur: boolean;
Expand All @@ -14,7 +14,7 @@ export class NavbarComponent {
this.toggleBlur = true;
}

logout(){
logout() {
localStorage.removeItem('token');
}
}
}

0 comments on commit ad27af9

Please sign in to comment.