mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
Refetch space list on mount
This commit is contained in:
parent
2e5990d057
commit
442fa23399
@ -1,5 +1,5 @@
|
|||||||
import { Text, Avatar, SimpleGrid, Card, rem } from "@mantine/core";
|
import { Text, Avatar, SimpleGrid, Card, rem } from "@mantine/core";
|
||||||
import React from "react";
|
import React, { useEffect } from 'react';
|
||||||
import {
|
import {
|
||||||
prefetchSpace,
|
prefetchSpace,
|
||||||
useGetSpacesQuery,
|
useGetSpacesQuery,
|
||||||
@ -12,7 +12,7 @@ import { useTranslation } from "react-i18next";
|
|||||||
|
|
||||||
export default function SpaceGrid() {
|
export default function SpaceGrid() {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const { data, isLoading } = useGetSpacesQuery();
|
const { data, isLoading } = useGetSpacesQuery({ page: 1 });
|
||||||
|
|
||||||
const cards = data?.items.map((space, index) => (
|
const cards = data?.items.map((space, index) => (
|
||||||
<Card
|
<Card
|
||||||
|
@ -38,6 +38,7 @@ export function useGetSpacesQuery(
|
|||||||
queryKey: ["spaces", params],
|
queryKey: ["spaces", params],
|
||||||
queryFn: () => getSpaces(params),
|
queryFn: () => getSpaces(params),
|
||||||
placeholderData: keepPreviousData,
|
placeholderData: keepPreviousData,
|
||||||
|
refetchOnMount: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user