feat: add example environment configuration file and update .gitignore to include .env files
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m35s

This commit is contained in:
2025-04-10 23:56:27 +05:00
parent c7993620f5
commit 378c120035
3 changed files with 28 additions and 3 deletions

View File

@ -1,6 +1,6 @@
"use server";
import type { TNationalPerson } from "@/lib/types";
import { User } from "./types/user";
import type { User } from "./types/user";
export async function getNationalPerson({
idCard,
@ -18,7 +18,7 @@ export async function getNationalPerson({
}
export async function VerifyUserDetails({ user }: { user: User }) {
console.log(user)
console.log(user);
// const phoneNumber = String(user.phoneNumber).slice(4);
// console.log({ phoneNumber });
// const nationalData = await getNationalPerson({ idCard: user.id_card ?? "" });