summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--app/packages/web/src/pages/share/index.astro5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/packages/web/src/pages/share/index.astro b/app/packages/web/src/pages/share/index.astro
index f7ae28e7b..b678c0db9 100644
--- a/app/packages/web/src/pages/share/index.astro
+++ b/app/packages/web/src/pages/share/index.astro
@@ -4,19 +4,18 @@ import config from "virtual:starlight/user-config";
import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
import Share from "../../components/Share.tsx";
-const { id } = Astro.params;
---
<StarlightPage
hasSidebar={false}
frontmatter={{
title: "Share",
- pageFind: false,
+ pagefind: false,
template: "splash",
tableOfContents: false,
}}
>
- <Share id={id} api={import.meta.env.VITE_API_URL} client:only="solid" />
+ <Share api={import.meta.env.VITE_API_URL} client:only="solid" />
</StarlightPage>
<style is:global>