fix(front): remove cache-only for ABOUT GraphQL details on homepage
Otherwise this doesn't show the title of the instance when going back Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
94182aed2d
commit
6858bcbbda
|
@ -236,9 +236,7 @@ const { result: aboutConfigResult } = useQuery<{
|
|||
IConfig,
|
||||
"name" | "description" | "slogan" | "registrationsOpen"
|
||||
>;
|
||||
}>(ABOUT, undefined, {
|
||||
fetchPolicy: "cache-only",
|
||||
});
|
||||
}>(ABOUT);
|
||||
|
||||
const config = computed(() => aboutConfigResult.value?.config);
|
||||
|
||||
|
|
Loading…
Reference in a new issue