From 2a868c89a65e3383d62c88da2b5f13a9244ef906 Mon Sep 17 00:00:00 2001 From: RIshabh Saxena Date: Mon, 1 Mar 2021 13:25:05 +0530 Subject: [PATCH] Revert "Wrap text with span for resilience for DOM mutations by google translate" This reverts commit e87ef2452e89207dc9b043ba269d53a0c9238d88. --- app/client/src/components/ads/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/components/ads/Button.tsx b/app/client/src/components/ads/Button.tsx index 584a257d82..5afc28c04a 100644 --- a/app/client/src/components/ads/Button.tsx +++ b/app/client/src/components/ads/Button.tsx @@ -405,7 +405,7 @@ const getTextContent = (props: ButtonProps) => const getButtonContent = (props: ButtonProps) => ( <> {getIconContent(props)} - {getTextContent(props)} + {getTextContent(props)} {props.isLoading ? : null} );