We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9547217 commit d923cd2Copy full SHA for d923cd2
1 file changed
frontend/src/components/pages/quotas/quotas-list.tsx
@@ -52,7 +52,9 @@ const request = create(ListQuotasRequestSchema, { pageSize: MAX_PAGE_SIZE });
52
const QuotasList = () => {
53
const navigate = useNavigate({ from: '/quotas' });
54
const search = useSearch({ from: '/quotas' });
55
- const { data, error, isLoading } = useQuery(listQuotas, request);
+ const { data, error, isLoading } = useQuery(listQuotas, request, {
56
+ refetchOnMount: 'always',
57
+ });
58
59
const quotasData = useMemo(() => {
60
if (!data?.quotas) {
0 commit comments