Skip to content

Commit 70aaf25

Browse files
committed
Remove uneeded angular Animation
Signed-off-by: freddidierRTE <[email protected]>
1 parent 7088f2c commit 70aaf25

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

frontend/package-lock.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
},
1818
"private": true,
1919
"dependencies": {
20-
"@angular/animations": "20.3.7",
2120
"@angular/common": "20.3.7",
2221
"@angular/compiler": "20.3.7",
2322
"@angular/core": "20.3.7",

frontend/src/main.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ import {ModalComponent} from './app/services/modal/component/ModalComponent';
5959
import {NgbModalComponent} from './app/services/modal/component/NgbModalComponent';
6060
import {SharingService} from './app/components/admin/services/SharingService';
6161
import {BrowserModule, bootstrapApplication} from '@angular/platform-browser';
62-
import {provideAnimations} from '@angular/platform-browser/animations';
6362
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
6463
import {OAuthModule} from 'angular-oauth2-oidc';
6564
import {NgbModule, NgbModalModule} from '@ng-bootstrap/ng-bootstrap';
@@ -116,7 +115,6 @@ bootstrapApplication(AppComponent, {
116115
{provide: TranslationLib, useClass: AngularTranslationLib},
117116
{provide: ModalComponent, useClass: NgbModalComponent},
118117
{provide: SharingService, useClass: SharingService},
119-
provideHttpClient(withInterceptorsFromDi()),
120-
provideAnimations()
118+
provideHttpClient(withInterceptorsFromDi())
121119
]
122120
}).catch((err) => logger.error(JSON.stringify(err)));

0 commit comments

Comments
 (0)