diff --git a/apps/web/supabase/config.toml b/apps/web/supabase/config.toml
index 2a313773a..9678cab2d 100644
--- a/apps/web/supabase/config.toml
+++ b/apps/web/supabase/config.toml
@@ -42,7 +42,7 @@ file_size_limit = "50MiB"
# in emails.
site_url = "http://localhost:3000"
# A list of *exact* URLs that auth providers are permitted to redirect to post authentication.
-additional_redirect_urls = ["https://localhost:3000"]
+additional_redirect_urls = ["http://localhost:3000", "http://localhost:3000/auth/callback", "http://localhost:3000/update-password"]
# How long tokens are valid for, in seconds. Defaults to 3600 (1 hour), maximum 604,800 seconds (one
# week).
jwt_expiry = 3600
@@ -69,4 +69,4 @@ secret = ""
redirect_uri = ""
# Overrides the default auth provider URL. Used to support self-hosted gitlab, single-tenant Azure,
# or any other third-party OIDC providers.
-url = ""
+url = ""
\ No newline at end of file
diff --git a/packages/features/auth/src/components/update-password-form.tsx b/packages/features/auth/src/components/update-password-form.tsx
index 0e53a49c2..fb1091c88 100644
--- a/packages/features/auth/src/components/update-password-form.tsx
+++ b/packages/features/auth/src/components/update-password-form.tsx
@@ -4,10 +4,11 @@ import Link from 'next/link';
import { zodResolver } from '@hookform/resolvers/zod';
import {
- ArrowLeftIcon,
CheckIcon,
ExclamationTriangleIcon,
} from '@radix-ui/react-icons';
+
+import { ArrowRightIcon } from 'lucide-react';
import { useForm } from 'react-hook-form';
import type { z } from 'zod';
@@ -44,7 +45,7 @@ export function UpdatePasswordForm(params: { redirectTo: string }) {
}
if (updateUser.data && !updateUser.isPending) {
- return