From a6f7198443438f5dfe78f4d318cd0a326ae2ff45 Mon Sep 17 00:00:00 2001 From: Fu Zi Xiang Date: Mon, 6 Nov 2023 13:54:45 +0800 Subject: [PATCH] chore: remove unneeded binding --- src/application.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")?;