diff --git a/app/assets/javascripts/discourse/app/components/topic-list/latest-topic-list-item.gjs b/app/assets/javascripts/discourse/app/components/topic-list/latest-topic-list-item.gjs index 0d797a953e5..510397eb637 100644 --- a/app/assets/javascripts/discourse/app/components/topic-list/latest-topic-list-item.gjs +++ b/app/assets/javascripts/discourse/app/components/topic-list/latest-topic-list-item.gjs @@ -1,6 +1,5 @@ import Component from "@glimmer/component"; import { concat, hash } from "@ember/helper"; -import { service } from "@ember/service"; import PluginOutlet from "discourse/components/plugin-outlet"; import PostsCountColumn from "discourse/components/topic-list/posts-count-column"; import TopicPostBadges from "discourse/components/topic-post-badges"; @@ -16,8 +15,6 @@ import topicFeaturedLink from "discourse/helpers/topic-featured-link"; import topicLink from "discourse/helpers/topic-link"; export default class LatestTopicListItem extends Component { - @service appEvents; - get tagClassNames() { return this.args.topic.tags?.map((tagName) => `tag-${tagName}`); }