diff options
| author | Jay V <[email protected]> | 2025-06-09 16:09:10 -0500 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-06-09 16:09:15 -0500 |
| commit | fcb972de193f6068e512eac18ec0341b989b7da6 (patch) | |
| tree | 1d80de230db2630049c9b9d101faa7b1ea47b5ba | |
| parent | 4478195ea8a5e6a6e10b150687fe4ebc8483821f (diff) | |
| download | opencode-fcb972de193f6068e512eac18ec0341b989b7da6.tar.gz opencode-fcb972de193f6068e512eac18ec0341b989b7da6.zip | |
edits
| -rw-r--r-- | packages/web/src/components/Share.tsx | 2 | ||||
| -rw-r--r-- | packages/web/src/pages/s/index.astro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/web/src/components/Share.tsx b/packages/web/src/components/Share.tsx index 333c349c5..016492e1b 100644 --- a/packages/web/src/components/Share.tsx +++ b/packages/web/src/components/Share.tsx @@ -586,8 +586,6 @@ export default function Share(props: { }) const [showingSystemPrompt, showSystemPrompt] = createSignal(false) - console.log(data()) - return ( <main class={`${styles.root} not-content`}> <div class={styles.header}> diff --git a/packages/web/src/pages/s/index.astro b/packages/web/src/pages/s/index.astro index e4c5c5df3..a9eab7046 100644 --- a/packages/web/src/pages/s/index.astro +++ b/packages/web/src/pages/s/index.astro @@ -10,6 +10,8 @@ const id = Astro.url.searchParams.get('id') const res = await fetch(`${apiUrl}/share_messages?id=${id}`); const data = await res.json(); +console.log(data.info) + --- <StarlightPage |
