From 82cb4a4dba44403dc11e5f3c712c98e651d82658 Mon Sep 17 00:00:00 2001 From: wangyijing Date: Mon, 1 Jul 2024 02:27:52 +0800 Subject: [PATCH] fix bug --- app/components/settings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/settings.tsx b/app/components/settings.tsx index 7aca45258..ce0357fdc 100644 --- a/app/components/settings.tsx +++ b/app/components/settings.tsx @@ -469,7 +469,7 @@ function SyncConfigModal(props: { onClose?: () => void }) { ); } -function ImportConfigModal(props: { onClose?: () => void }) { +function ImportConfigModal(props: { onClose?: () => void; rows?: number }) { const [importString, setImportString] = useState(""); const syncStore = useSyncStore();