From 65d7678bf99e1a399092bbc14fd96cf93e6a611d Mon Sep 17 00:00:00 2001 From: Brandy Carney <6577830+brandyscarney@users.noreply.github.com> Date: Tue, 31 Dec 2024 10:45:59 -0500 Subject: [PATCH] fix(playground): css file should always be included --- _templates/playground/new/angular_example_component_ts.md.ejs.t | 2 -- 1 file changed, 2 deletions(-) diff --git a/_templates/playground/new/angular_example_component_ts.md.ejs.t b/_templates/playground/new/angular_example_component_ts.md.ejs.t index dda79001c4..548a45dd57 100644 --- a/_templates/playground/new/angular_example_component_ts.md.ejs.t +++ b/_templates/playground/new/angular_example_component_ts.md.ejs.t @@ -9,9 +9,7 @@ import { <%= pascalComponent %> } from '@ionic/angular/standalone'; @Component({ selector: 'app-example', templateUrl: 'example.component.html', -<% if (css){ -%> styleUrls: ['./example.component.css'], -<% } -%> imports: [<%= pascalComponent %>], }) export class ExampleComponent {}