fix text color (#7056)

Co-authored-by: CarinaWolli <wollencarina@gmail.com>
pull/7071/head
Carina Wollendorfer 2023-02-13 06:10:52 -05:00 committed by GitHub
parent 8a99c3d2a5
commit 5fcfbb2d90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ export default function WebhookTestDisclosure() {
{t("ping_test")}
</Button>
</div>
<div className="space-y-0 rounded-md border border-neutral-200 sm:mx-0">
<div className="space-y-0 rounded-md border border-neutral-200 sm:mx-0">
<div className="flex justify-between border-b p-4">
<div className="flex items-center space-x-1">
<h3 className="self-center text-sm font-semibold leading-4">{t("webhook_response")}</h3>
@ -45,7 +45,7 @@ export default function WebhookTestDisclosure() {
<div className="rounded-b-md bg-black p-4 font-mono text-[13px] leading-4 text-white">
{!mutation.data && <p>{t("no_data_yet")}</p>}
{mutation.status === "success" && (
<div className="overflow-x-auto text-gray-900">{JSON.stringify(mutation.data, null, 4)}</div>
<div className="overflow-x-auto text-white">{JSON.stringify(mutation.data, null, 4)}</div>
)}
</div>
</div>