From 413acfd308fea980e7f002c9e810039fea8dab7e Mon Sep 17 00:00:00 2001 From: EnThib Date: Sun, 27 Jul 2025 11:56:44 +0200 Subject: [PATCH] docs: missing super() call in constructor --- content/recipes/cqrs.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/recipes/cqrs.md b/content/recipes/cqrs.md index 0a61d24331..d67e5c445f 100644 --- a/content/recipes/cqrs.md +++ b/content/recipes/cqrs.md @@ -89,7 +89,9 @@ export class KillDragonCommand extends Command<{ constructor( public readonly heroId: string, public readonly dragonId: string, - ) {} + ) { + super(); + } } @@switch export class KillDragonCommand extends Command {