Javascript – useEffect is running twice
here is the code: import { type AppType } from 'next/app' import { api } from '~/utils/api' import '~/styles/globals.css' import Nav from '~/components/Nav' import { useEffect, useState } from 'react' const MyApp: AppType = ({ Component, pageProps }) => {…