diff --git a/src/MigrateV2.tsx b/src/MigrateV2.tsx index 775b9a5..a5dfbc3 100644 --- a/src/MigrateV2.tsx +++ b/src/MigrateV2.tsx @@ -173,7 +173,12 @@ export function WizardAccountPage(props: OurPagePropsType & { setEtebase: (eteba headers: { Authorization: "Token " + props.etesync.credentials.authToken }, }); if (!response.ok) { - throw new Error("Failed preparing account for migration"); + try { + const json = await response.json(); + throw new Error(json.detail ?? JSON.stringify(json)); + } catch (e) { + throw new Error("Failed preparing account for migration"); + } } }