fix(app): don't refetch periodically
This commit is contained in:
parent
d9ed205168
commit
baa4b63387
1 changed files with 1 additions and 1 deletions
|
@ -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' },
|
||||
|
|
Loading…
Reference in a new issue