summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/app/src/pages/session.tsx14
-rw-r--r--packages/sdk/openapi.json6
2 files changed, 14 insertions, 6 deletions
diff --git a/packages/app/src/pages/session.tsx b/packages/app/src/pages/session.tsx
index fdb9f268c..3b405ef07 100644
--- a/packages/app/src/pages/session.tsx
+++ b/packages/app/src/pages/session.tsx
@@ -1102,12 +1102,14 @@ export default function Page() {
visibleUserMessages().length
store.turnStart
- const targetId = pendingMessage() ?? (() => {
- const hash = window.location.hash.slice(1)
- const match = hash.match(/^message-(.+)$/)
- if (!match) return undefined
- return match[1]
- })()
+ const targetId =
+ pendingMessage() ??
+ (() => {
+ const hash = window.location.hash.slice(1)
+ const match = hash.match(/^message-(.+)$/)
+ if (!match) return undefined
+ return match[1]
+ })()
if (!targetId) return
if (store.messageId === targetId) return
diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json
index 08dd98fd9..c1be820f2 100644
--- a/packages/sdk/openapi.json
+++ b/packages/sdk/openapi.json
@@ -231,6 +231,9 @@
"url": {
"type": "string"
},
+ "override": {
+ "type": "string"
+ },
"color": {
"type": "string"
}
@@ -5796,6 +5799,9 @@
"url": {
"type": "string"
},
+ "override": {
+ "type": "string"
+ },
"color": {
"type": "string"
}