diff --git a/public/manifest/apple-touch-icon.png b/public/manifest/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/public/manifest/favicon.ico b/public/manifest/favicon.ico old mode 100755 new mode 100644 diff --git a/public/manifest/icon152.png b/public/manifest/icon152.png old mode 100755 new mode 100644 diff --git a/public/manifest/icon16.png b/public/manifest/icon16.png old mode 100755 new mode 100644 diff --git a/public/manifest/icon196.png b/public/manifest/icon196.png old mode 100755 new mode 100644 diff --git a/public/manifest/icon32.png b/public/manifest/icon32.png old mode 100755 new mode 100644 diff --git a/src/pages/best-practices/[bestPracticeId]/[...topicId].astro b/src/pages/best-practices/[bestPracticeId]/[...topicId].astro index dd304ce21..bc025c5e4 100644 --- a/src/pages/best-practices/[bestPracticeId]/[...topicId].astro +++ b/src/pages/best-practices/[bestPracticeId]/[...topicId].astro @@ -1,6 +1,6 @@ --- -import BaseLayout from '../../../layouts/BaseLayout.astro'; -import { BestPracticeTopicFileType,getAllBestPracticeTopicFiles } from '../../../lib/best-practice-topic'; +import { getAllBestPracticeTopicFiles } from '../../../lib/best-practice-topic'; +import type { BestPracticeTopicFileType } from '../../../lib/best-practice-topic'; export async function getStaticPaths() { const topicPathMapping = await getAllBestPracticeTopicFiles(); @@ -20,21 +20,7 @@ export async function getStaticPaths() { }); } -const { topicId } = Astro.params; -const { file, bestPracticeId, bestPractice, heading } = Astro.props as BestPracticeTopicFileType; +const { file } = Astro.props as BestPracticeTopicFileType; --- - -
-
-
- -
-
-
-
+