Skip to content

Commit

Permalink
webapp/navbar: fix ngb reference
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Apr 8, 2024
1 parent a85ddd7 commit ce6d91e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WebApp/src/app/core/components/navbar/navbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import {
RouterModule,
} from '@angular/router';
import { Location, PopStateEvent } from '@angular/common';
import { NgbCollapse, NgbTooltip } from '@ng-bootstrap/ng-bootstrap';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { SocialLinksComponent } from '../social-links/social-links.component';

@Component({
standalone: true,
imports: [NgbTooltip, NgbCollapse, RouterModule, SocialLinksComponent],
imports: [NgbModule, RouterModule, SocialLinksComponent],
selector: 'app-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.scss'],
Expand Down

0 comments on commit ce6d91e

Please sign in to comment.