From 992d8ed49cb2f8e9964e21f621676c07f15626b6 Mon Sep 17 00:00:00 2001 From: Maksim Ivanov Date: Mon, 30 Sep 2024 12:18:03 +0300 Subject: [PATCH] chore: remove redundant line (#9195) --- .../app/stackblitz/project-files/src/main.ts.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/projects/demo/src/modules/app/stackblitz/project-files/src/main.ts.md b/projects/demo/src/modules/app/stackblitz/project-files/src/main.ts.md index 5568c52ca0cc..9c111adfffb7 100644 --- a/projects/demo/src/modules/app/stackblitz/project-files/src/main.ts.md +++ b/projects/demo/src/modules/app/stackblitz/project-files/src/main.ts.md @@ -19,17 +19,16 @@ class Root {} bootstrapApplication(Root, { providers: [ provideAnimations(), + /** + * A workaround for StackBlitz only (it does not support assets). + * Don't use this approach in real-world applications! + */ + tuiAssetsPathProvider('https://taiga-ui.dev/assets/taiga-ui/icons'), NG_EVENT_PLUGINS, { provide: 'Pythons', useValue: ['John Cleese', 'Eric Idle', 'Michael Palin', 'Graham Chapman', 'Terry Gilliam', 'Terry Jones'], }, - /** - * A workaround for StackBlitz only (it does not support assets). - * Don't use this approach in real-world applications! - */ - // TODO: remove `next/` after 4.0 release - tuiAssetsPathProvider('https://taiga-ui.dev/next/assets/taiga-ui/icons'), ], }); ```