👔 complete handler callback

Complete the logic checking and loading on the OAuth module callback handler.
This commit is contained in:
2025-08-26 12:53:53 +07:00
parent 17a3415457
commit 1bf56603e0
7 changed files with 82 additions and 10 deletions

View File

@ -1,3 +1,4 @@
import OauthCallbackHandler from "@/features/oauth-callback/pages/callbackHandler";
import React from "react";
interface PageProps {
@ -6,12 +7,7 @@ interface PageProps {
}
const page = ({ params, searchParams }: PageProps) => {
return (
<>
<h1>Nama provider: {params.provider}</h1>
<h1>Data provider: {JSON.stringify(searchParams)}</h1>
</>
);
return <OauthCallbackHandler />;
};
export default page;