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

@ -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>