From 1b6e53f032fc11f5c5d7fd58df91b33b00141e3c Mon Sep 17 00:00:00 2001 From: Mayuresh-1306 Date: Mon, 20 Oct 2025 11:38:30 +0530 Subject: [PATCH] docs: Set cache to no-cache in digital product examples (#13778) Fixes medusajs/medusa#13687 --- .../app/recipes/digital-products/examples/standard/page.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx b/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx index 8bca54bfdf..ee088c7ec2 100644 --- a/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx +++ b/www/apps/resources/app/recipes/digital-products/examples/standard/page.mdx @@ -2922,7 +2922,7 @@ export const getCustomerDigitalProducts = async () => { headers, next, - cache: "force-cache", + cache: "no-cache", }) return digital_products as DigitalProduct[] @@ -3100,7 +3100,7 @@ export const getDigitalMediaDownloadLink = async (mediaId: string) => { method: "POST", headers, next, - cache: "force-cache", + cache: "no-cache", }) return url