From 2348c34490902899e2f7501518971e736d7817c5 Mon Sep 17 00:00:00 2001 From: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:29:57 +0000 Subject: [PATCH] prettier fix --- docs/02-app/02-api-reference/01-directives/use-cache.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/02-app/02-api-reference/01-directives/use-cache.mdx b/docs/02-app/02-api-reference/01-directives/use-cache.mdx index ecded8c40dee6..725ff8aae2da0 100644 --- a/docs/02-app/02-api-reference/01-directives/use-cache.mdx +++ b/docs/02-app/02-api-reference/01-directives/use-cache.mdx @@ -232,7 +232,6 @@ When defining multiple caching behaviors in the same route or component tree, if 2. If no cache profile exists, then the shortest profile times from all inner `use cache` calls applies to this `use cache`. If there are no inner `use cache`'s then the default is used 3. Inner caches at two levels deep do not affect the outer cache since they have already provided their duration to their parent. - For example, if you add the `use cache` directive to your page, without specifying a cache profile, the default cache profile will be applied implicitly (`cacheLife(”default”)`). If a component imported into the page also uses the `use cache` directive with its own cache profile, the outer and inner cache profiles are compared, and shortest duration set in the profiles will be applied. ```tsx filename="app/components/parent.tsx" highlight={5,6}