From 5fcfbb2d901078cad78eac5a11ecf8e29afc45a2 Mon Sep 17 00:00:00 2001 From: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> Date: Mon, 13 Feb 2023 06:10:52 -0500 Subject: [PATCH] fix text color (#7056) Co-authored-by: CarinaWolli --- .../features/webhooks/components/WebhookTestDisclosure.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/features/webhooks/components/WebhookTestDisclosure.tsx b/packages/features/webhooks/components/WebhookTestDisclosure.tsx index 9744637c32..62bbbe3e33 100644 --- a/packages/features/webhooks/components/WebhookTestDisclosure.tsx +++ b/packages/features/webhooks/components/WebhookTestDisclosure.tsx @@ -31,7 +31,7 @@ export default function WebhookTestDisclosure() { {t("ping_test")} -
+

{t("webhook_response")}

@@ -45,7 +45,7 @@ export default function WebhookTestDisclosure() {
{!mutation.data &&

{t("no_data_yet")}

} {mutation.status === "success" && ( -
{JSON.stringify(mutation.data, null, 4)}
+
{JSON.stringify(mutation.data, null, 4)}
)}