Skip to content

Commit 498c02b

Browse files
authored
Merge pull request #182 from leoshimo/leoshimo/181-sampling-dark-mode
fix: add dark mode support to SamplingTab JSON display (#181)
2 parents 0281e5f + e5ee00b commit 498c02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/SamplingTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const SamplingTab = ({ pendingRequests, onApprove, onReject }: Props) => {
4343
<h3 className="text-lg font-semibold">Recent Requests</h3>
4444
{pendingRequests.map((request) => (
4545
<div key={request.id} className="p-4 border rounded-lg space-y-4">
46-
<pre className="bg-gray-50 p-2 rounded">
46+
<pre className="bg-gray-50 dark:bg-gray-800 dark:text-gray-100 p-2 rounded">
4747
{JSON.stringify(request.request, null, 2)}
4848
</pre>
4949
<div className="flex space-x-2">

0 commit comments

Comments
 (0)