diff --git a/app/client/components/export-dialog.tsx b/app/client/components/export-dialog.tsx index 4d44c023..6d5cf695 100644 --- a/app/client/components/export-dialog.tsx +++ b/app/client/components/export-dialog.tsx @@ -244,8 +244,10 @@ export function ExportDialog({ } // Password verified, proceed with export await performExport(); - } catch { - toast.error("Incorrect password"); + } catch (err) { + toast.error("Verification failed", { + description: err instanceof Error ? err.message : "Unable to verify password. Please check your connection and try again.", + }); } finally { setIsVerifying(false); }