We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7155622 commit d5d8822Copy full SHA for d5d8822
1 file changed
app/lib/docs.ts
@@ -196,7 +196,6 @@ async function getLanguageIds(): Promise<LangId[]> {
196
}
197
198
export async function getPagesList(): Promise<LanguageEntry[]> {
199
- "use cache";
200
const langIds = await getLanguageIds();
201
return await Promise.all(
202
langIds.map(async (langId) => {
@@ -255,7 +254,6 @@ export async function getMarkdownSections(
255
254
lang: LangId,
256
page: PageSlug
257
): Promise<MarkdownSection[]> {
258
259
if (isCloudflare()) {
260
const sectionsJson = await readPublicFile(
261
`docs/${lang}/${page}/sections.json`
0 commit comments