diff --git a/apps/rebreak-native/app/profile/edit.tsx b/apps/rebreak-native/app/profile/edit.tsx index 1b2a027..61a5fd2 100644 --- a/apps/rebreak-native/app/profile/edit.tsx +++ b/apps/rebreak-native/app/profile/edit.tsx @@ -105,9 +105,10 @@ export default function ProfileEditScreen() { reload(); router.back(); - } catch { + } catch (err: any) { setUploading(false); - Alert.alert(t('common.error'), t('common.unknown_error')); + console.error('[profile/edit] save failed:', err?.message ?? err); + Alert.alert(t('common.error'), err?.message ?? t('common.unknown_error')); } finally { setSaving(false); }