import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { ListCallDepositsTable } from "./_components/list-call-deposit-table/table";

export const dynamic = "force-dynamic";

export default function CallDepositPage() {
  return (
    <CustomerPageShell>
      <ListCallDepositsTable />
    </CustomerPageShell>
  );
}
