From 56944de6337f5283f96f197e11432fee32c085b9 Mon Sep 17 00:00:00 2001 From: SujalXplores Date: Fri, 13 Dec 2024 22:48:34 +0530 Subject: [PATCH] refactor: remove unused React import in ImportButtons component --- app/commit.json | 2 +- app/components/chat/chatExportAndImport/ImportButtons.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/commit.json b/app/commit.json index 16937fb..1287bea 100644 --- a/app/commit.json +++ b/app/commit.json @@ -1 +1 @@ -{ "commit": "1764145ba4cd8a4cf10f4dc89ac9abf6fd1a00fd" } +{ "commit": "ff2726fd2fcf53a9fd2beac967f4c92c78d390bf" } diff --git a/app/components/chat/chatExportAndImport/ImportButtons.tsx b/app/components/chat/chatExportAndImport/ImportButtons.tsx index e87cd0c..208fd02 100644 --- a/app/components/chat/chatExportAndImport/ImportButtons.tsx +++ b/app/components/chat/chatExportAndImport/ImportButtons.tsx @@ -1,6 +1,5 @@ import type { Message } from 'ai'; import { toast } from 'react-toastify'; -import React from 'react'; import { ImportFolderButton } from '~/components/chat/ImportFolderButton'; export function ImportButtons(importChat: ((description: string, messages: Message[]) => Promise) | undefined) {