From 1df023fd15c55e801a1f12834b449622b0677758 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 15 Dec 2022 17:09:05 -0800 Subject: [PATCH] Remove unneeded import to fix CI. --- .../chat-conversation-list.component.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/chat-conversation-list/chat-conversation-list.component.jsx b/client/src/components/chat-conversation-list/chat-conversation-list.component.jsx index 849b19720..816772291 100644 --- a/client/src/components/chat-conversation-list/chat-conversation-list.component.jsx +++ b/client/src/components/chat-conversation-list/chat-conversation-list.component.jsx @@ -1,4 +1,4 @@ -import { Badge, List, Space, Tag } from "antd"; +import { Badge, List, Tag } from "antd"; import React from "react"; import { connect } from "react-redux"; import { createStructuredSelector } from "reselect"; @@ -6,8 +6,8 @@ import { setSelectedConversation } from "../../redux/messaging/messaging.actions import { selectSelectedConversation } from "../../redux/messaging/messaging.selectors"; import { TimeAgoFormatter } from "../../utils/DateFormatter"; import PhoneFormatter from "../../utils/PhoneFormatter"; -import "./chat-conversation-list.styles.scss"; import OwnerNameDisplay from "../owner-name-display/owner-name-display.component"; +import "./chat-conversation-list.styles.scss"; const mapStateToProps = createStructuredSelector({ selectedConversation: selectSelectedConversation,