IO-233 WIP CDK.

This commit is contained in:
Patrick Fic
2021-06-23 10:57:57 -07:00
parent 4f6bb02ab7
commit 5be2d7bd39
9 changed files with 177 additions and 7 deletions

View File

@@ -5,10 +5,6 @@ import { useTranslation } from "react-i18next";
import { TOGGLE_CONVERSATION_ARCHIVE } from "../../graphql/conversations.queries";
export default function ChatArchiveButton({ conversation }) {
console.log(
"🚀 ~ file: chat-archive-button.component.jsx ~ line 6 ~ conversation",
conversation
);
const [loading, setLoading] = useState(false);
const { t } = useTranslation();
const [updateConversation] = useMutation(TOGGLE_CONVERSATION_ARCHIVE);