refactor: remove unused React import in ImportButtons component

This commit is contained in:
SujalXplores 2024-12-13 22:48:34 +05:30
parent ff2726fd2f
commit 56944de633
2 changed files with 1 additions and 2 deletions

View File

@ -1 +1 @@
{ "commit": "1764145ba4cd8a4cf10f4dc89ac9abf6fd1a00fd" }
{ "commit": "ff2726fd2fcf53a9fd2beac967f4c92c78d390bf" }

View File

@ -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<void>) | undefined) {