diff --git a/src/application.rs b/src/application.rs index 885c11df..fc973362 100644 --- a/src/application.rs +++ b/src/application.rs @@ -228,9 +228,9 @@ async fn setup_admin_account( UPDATE auth.users SET role = 'supabase_admin', email_confirmed_at = NOW() WHERE id = $1 - "#, user_id + "#, + user_id ) - // .bind(user.id) .execute(pg_pool) .await .context("failed to update the admin user")?;