From 0d99c69fe67811273426f38c26cfed1d0a727f67 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Mon, 21 Jun 2021 10:11:18 +0100 Subject: [PATCH] Fix typo --- packages/client/src/utils/buttonActions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/utils/buttonActions.js b/packages/client/src/utils/buttonActions.js index 92912908cb..9acf30b219 100644 --- a/packages/client/src/utils/buttonActions.js +++ b/packages/client/src/utils/buttonActions.js @@ -117,12 +117,12 @@ export const enrichButtonActions = (actions, context) => { } }) - // Stop enriching actions when encountering a confirmable actions, + // Stop enriching actions when encountering a confirmable action, // as the callback continues the action chain return } - // For non-confirmable actions, execute this immediately + // For non-confirmable actions, execute the handler immediately else { const result = await callback() if (result === false) {