import { getSavedPaymentCardsSafely } from "@/lib/trpc/memoizedRequests" import PaymentClient from "./PaymentClient" import type { PaymentProps } from "@/types/components/hotelReservation/selectRate/section" export default async function Payment({ user, otherPaymentOptions, mustBeGuaranteed, supportedCards, }: PaymentProps) { const savedCreditCards = await getSavedPaymentCardsSafely({ supportedCards, }) return ( ) }