We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7821606 commit 8f7ce35Copy full SHA for 8f7ce35
src/components/chat/FileSendButton.tsx
@@ -85,11 +85,11 @@ const FileSendButton = ({ onUploadSuccess }: FileSendButtonProps) => {
85
<button
86
onClick={handleButtonClick}
87
disabled={uploading}
88
- className="my-2 w-fit rounded-md bg-blue-500 p-4 text-white transition-colors hover:bg-blue-600 disabled:cursor-not-allowed disabled:bg-gray-400"
+ className="my-2 w-fit rounded-md bg-[#0D2D84] p-4 text-white transition-colors hover:bg-[#0a2366] disabled:cursor-not-allowed disabled:bg-gray-400"
89
>
90
{uploading ? '업로드 중...' : '📎파일 업로드'}
91
</button>
92
- {uploadStatus && <p className="text-sm text-red-600">dd{uploadStatus}</p>}
+ {uploadStatus && <p className="text-sm text-red-600">{uploadStatus}</p>}
93
</div>
94
);
95
};
0 commit comments