Skip to content

Commit 69b3b35

Browse files
committed
chore: generate
1 parent 3173ba1 commit 69b3b35

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

packages/app/src/pages/session.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,12 +1102,14 @@ export default function Page() {
11021102
visibleUserMessages().length
11031103
store.turnStart
11041104

1105-
const targetId = pendingMessage() ?? (() => {
1106-
const hash = window.location.hash.slice(1)
1107-
const match = hash.match(/^message-(.+)$/)
1108-
if (!match) return undefined
1109-
return match[1]
1110-
})()
1105+
const targetId =
1106+
pendingMessage() ??
1107+
(() => {
1108+
const hash = window.location.hash.slice(1)
1109+
const match = hash.match(/^message-(.+)$/)
1110+
if (!match) return undefined
1111+
return match[1]
1112+
})()
11111113
if (!targetId) return
11121114
if (store.messageId === targetId) return
11131115

packages/sdk/openapi.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@
231231
"url": {
232232
"type": "string"
233233
},
234+
"override": {
235+
"type": "string"
236+
},
234237
"color": {
235238
"type": "string"
236239
}
@@ -5796,6 +5799,9 @@
57965799
"url": {
57975800
"type": "string"
57985801
},
5802+
"override": {
5803+
"type": "string"
5804+
},
57995805
"color": {
58005806
"type": "string"
58015807
}

0 commit comments

Comments
 (0)