style: format import statements for readability
All checks were successful
All checks were successful
This commit is contained in:
parent
6f3f3791c3
commit
0cc8ff50aa
2 changed files with 16 additions and 2 deletions
|
@ -1,4 +1,11 @@
|
|||
import { ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit, signal } from '@angular/core';
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
inject,
|
||||
OnDestroy,
|
||||
OnInit,
|
||||
signal,
|
||||
} from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { AuthService } from '../../../service/auth.service';
|
||||
import { CurrencyPipe } from '@angular/common';
|
||||
|
|
Reference in a new issue