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