fix(app): don't refetch periodically

This commit is contained in:
Nicolas Meienberger 2023-03-02 21:25:55 +01:00
parent d9ed205168
commit baa4b63387

View file

@ -10,7 +10,7 @@ interface IProps {
}
export const AppDetailsPage: NextPage<IProps> = ({ appId }) => {
const { data, error } = trpc.app.getApp.useQuery({ id: appId }, { refetchInterval: 3000 });
const { data, error } = trpc.app.getApp.useQuery({ id: appId });
const breadcrumb = [
{ name: 'Apps', href: '/apps' },