custom profile fixes

This commit is contained in:
2023-02-25 21:10:05 -05:00
parent 1bd7a62d15
commit ba21c70566
2 changed files with 8 additions and 5 deletions

View File

@@ -111,10 +111,14 @@ class _EmailVerificationBadgeState extends State<EmailVerificationBadge> {
if (state == EmailVerificationState.pending)
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
LoadingIndicator(size: 16, borderWidth: 0.5),
SizedBox(width: 16),
Text('Waiting for email verification'),
children: [
const SizedBox(width: 16),
Wrap(
children: const [
Text('Log out and log back in to confirm.'),
],
),
],
)
else