diff options
| author | Jay V <[email protected]> | 2025-08-11 12:51:19 -0400 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-08-11 12:51:19 -0400 |
| commit | 42329a038a2f9b6721ff9fea4299c17f7ec4c54e (patch) | |
| tree | 544e7abc9210c0df5486ce860d47ba6ddca14eae /packages/web/src/components | |
| parent | 10f3983f0bf490cbe1c5db623706bcb5fc0bee3f (diff) | |
| download | opencode-42329a038a2f9b6721ff9fea4299c17f7ec4c54e.tar.gz opencode-42329a038a2f9b6721ff9fea4299c17f7ec4c54e.zip | |
docs: share page fix
Diffstat (limited to 'packages/web/src/components')
| -rw-r--r-- | packages/web/src/components/Share.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/web/src/components/Share.tsx b/packages/web/src/components/Share.tsx index 47632492d..3848924df 100644 --- a/packages/web/src/components/Share.tsx +++ b/packages/web/src/components/Share.tsx @@ -64,9 +64,9 @@ export default function Share(props: { }>({ info: props.info, messages: mapValues(props.messages, (x: any) => ("metadata" in x ? fromV1(x) : x)) }) const messages = createMemo(() => Object.values(store.messages).toSorted((a, b) => a.id?.localeCompare(b.id))) const [connectionStatus, setConnectionStatus] = createSignal<[Status, string?]>(["disconnected", "Disconnected"]) - createEffect(() => { - console.log(unwrap(store)) - }) + // createEffect(() => { + // console.log(unwrap(store)) + // }) onMount(() => { const apiUrl = props.api |
