feat: update format

This commit is contained in:
reya
2023-12-14 13:11:21 +07:00
parent a93ebd3861
commit d9ab7893e0
120 changed files with 82 additions and 338 deletions
+1 -4
View File
@@ -1,14 +1,11 @@
import { useState } from 'react';
import { toast } from 'sonner';
import { MediaUploader } from '@app/chats/components/mediaUploader';
import { useArk } from '@libs/ark';
import { EnterIcon } from '@shared/icons';
export function ChatForm({ receiverPubkey }: { receiverPubkey: string }) {
const { ark } = useArk();
const ark = useArk();
const [value, setValue] = useState('');
const submit = async () => {