We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7894326 commit 42d2151Copy full SHA for 42d2151
1 file changed
apps/web/src/lib/service/remoteService.ts
@@ -37,8 +37,7 @@ async function getProject({id, version}: ProjectContext): Promise<ProjectWithInf
37
}
38
39
async function getBackendLayout({id, version, locale}: ProjectContext): Promise<LayoutTree | null> {
40
- return resolveNullableApiCall(() =>
41
- sendApiRequest(id, `docs/${id}/tree`, {version, locale}, {cache: false}));
+ return resolveNullableApiCall(() => sendApiRequest(id, `docs/${id}/tree`, {version, locale}));
42
43
44
async function getAsset(location: ResourceLocation, ctx: ProjectContext): Promise<AssetLocation | null> {
0 commit comments