I have a page.tsx with a fetch call in CSR. This call is being made twice.
"use client";
import { Transaction } from "@/components/transactions";
import { getTransaction } from "@/utils/services/api";
const Page = async () => {
const data = await getTransaction();
return <div>{JSON.stringify(data)}</div>;
};
export default Page;