Bug removal
🚨 Bug Report Success! 🚨 Hey everyone! 🌟 I recently discovered an error in the Angular Basics course on SoloLearn's website while working through the Components lesson. The provided code mistakenly listed the `styleUrl` as an HTML file instead of a CSS file. 🤔 Here’s the incorrect code: ```typescript @Component({ selector: 'menu', standalone: true, templateUrl: './menu.component.html', styleUrl: './menu.component.html' }) export class MenuComponent { } ``` The `styleUrl` should be pointing to a CSS file, like this: ```typescript styleUrl: './menu.component.css' ``` I reported this bug to the SoloLearn team, and they acknowledged the mistake! 🎉 It feels amazing to contribute to improving such a valuable learning platform. 💪 Remember, no detail is too small when it comes to coding. Keep learning and never hesitate to speak up when you spot an error. Happy coding! 👨💻👩💻 #CodingLife #BugHunter #Angular #SoloLearn #LearningJourney #SuccessStory #KeepLearning