unused import

This commit is contained in:
Jarek Radosz 2024-09-16 21:36:32 +02:00
parent d4fa3c91e1
commit f71ccf37a7
No known key found for this signature in database
GPG Key ID: 62D0FBAE5BF9B953
1 changed files with 0 additions and 3 deletions

View File

@ -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}`);
}