diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 6e412a9..a8e7043 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -146,6 +146,9 @@ export const App = () => {
}
const selectFiles = () => {
+ if (isProcessing) {
+ return
+ }
SelectFiles().then(files => {
for (const file of files) {
setItems(prev => [...prev, { file, status: 'pending' }])
@@ -234,7 +237,14 @@ export const App = () => {
}>
添加文件
-