aboutsummaryrefslogtreecommitdiff
path: root/test-client
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-09 19:55:18 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-09 19:55:18 +0200
commit5b4c2cc46f7c263eb8863818586b6c95e0fe2259 (patch)
treeb83cfb3cfa486019da0bea9e8d4b25079a77f6cd /test-client
parent5b8e532bb15261eb2822bce8a7f44c5a40553df0 (diff)
downloadhurrycurry-5b4c2cc46f7c263eb8863818586b6c95e0fe2259.tar
hurrycurry-5b4c2cc46f7c263eb8863818586b6c95e0fe2259.tar.bz2
hurrycurry-5b4c2cc46f7c263eb8863818586b6c95e0fe2259.tar.zst
Add missing title to recipe book page types
Diffstat (limited to 'test-client')
-rw-r--r--test-client/protocol.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/protocol.ts b/test-client/protocol.ts
index ad7c4352..c4022e85 100644
--- a/test-client/protocol.ts
+++ b/test-client/protocol.ts
@@ -121,7 +121,7 @@ export type BookPage =
{ page_type: "cover" }
| { page_type: "contents", table: [Message, number][] }
| { page_type: "text", title: Message, paragraphs: Message[] }
- | { page_type: "recipe", descriptions: Message, diagram: Diagram }
+ | { page_type: "recipe", title: Message, descriptions: Message, diagram: Diagram }
export interface Diagram {
nodes: DiagramNode[]