From 19aa4b0b5be0fe0295095d004be6947ec90c35b7 Mon Sep 17 00:00:00 2001 From: Sacha Lansky Date: Thu, 2 Feb 2023 16:45:11 +0100 Subject: [PATCH] Fix error typo (#719) * Fix error typo Closes #718 * Update javascript/packages/orchestrator/src/configGenerator.ts --------- Co-authored-by: Javier Viola --- javascript/packages/orchestrator/src/configGenerator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/packages/orchestrator/src/configGenerator.ts b/javascript/packages/orchestrator/src/configGenerator.ts index cc2e07820..a2805ae7e 100644 --- a/javascript/packages/orchestrator/src/configGenerator.ts +++ b/javascript/packages/orchestrator/src/configGenerator.ts @@ -58,7 +58,7 @@ const isIterable = (obj: any) => { const configurationFileChecks = (config: LaunchConfig): void => { if ((config as any).hrmpChannels) { throw new Error( - "'hrmpChannel' value the given configuration file is deprecated; Please use 'hrmp_channel' instead;", + "'hrmpChannels' value the given configuration file is deprecated; Please use 'hrmp_channels' instead;", ); }