mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-04-19 20:56:52 +00:00
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m49s
22 lines
547 B
TypeScript
22 lines
547 B
TypeScript
import VerifyOTPForm from "@/components/auth/verify-otp-form";
|
|
import Image from "next/image";
|
|
import { redirect } from "next/navigation";
|
|
import React from "react";
|
|
|
|
export default async function VerifyOTP({
|
|
searchParams,
|
|
}: {
|
|
searchParams: Promise<{ phone_number: string }>;
|
|
}) {
|
|
const phone_number = (await searchParams).phone_number;
|
|
if (!phone_number) {
|
|
return redirect("/login");
|
|
}
|
|
console.log(
|
|
"phone number from server page params (verify otp page)",
|
|
phone_number,
|
|
);
|
|
|
|
return <VerifyOTPForm phone_number={phone_number} />;
|
|
}
|