mirror of
https://github.com/sst/opencode.git
synced 2025-08-30 01:44:11 +00:00
This commit is contained in:
parent
10f3983f0b
commit
42329a038a
1 changed files with 3 additions and 3 deletions
|
@ -64,9 +64,9 @@ export default function Share(props: {
|
||||||
}>({ info: props.info, messages: mapValues(props.messages, (x: any) => ("metadata" in x ? fromV1(x) : x)) })
|
}>({ 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 messages = createMemo(() => Object.values(store.messages).toSorted((a, b) => a.id?.localeCompare(b.id)))
|
||||||
const [connectionStatus, setConnectionStatus] = createSignal<[Status, string?]>(["disconnected", "Disconnected"])
|
const [connectionStatus, setConnectionStatus] = createSignal<[Status, string?]>(["disconnected", "Disconnected"])
|
||||||
createEffect(() => {
|
// createEffect(() => {
|
||||||
console.log(unwrap(store))
|
// console.log(unwrap(store))
|
||||||
})
|
// })
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
const apiUrl = props.api
|
const apiUrl = props.api
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue