From 5c01f1a730480c7587a02f72166b5e4e19f9658f Mon Sep 17 00:00:00 2001 From: dotX12 Date: Sun, 26 Jan 2025 16:56:06 +0300 Subject: [PATCH] Update ConsentForm props to use onAcceptAction and onRejectAction for consistency. --- authentication/src/app/flow/consent/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authentication/src/app/flow/consent/page.tsx b/authentication/src/app/flow/consent/page.tsx index 9b55ee2..5267326 100644 --- a/authentication/src/app/flow/consent/page.tsx +++ b/authentication/src/app/flow/consent/page.tsx @@ -83,8 +83,8 @@ export default async function Consent(props: { searchParams: Promise<{ consent_c + onAcceptAction={onAccept} + onRejectAction={onReject}/> ); }