Skip to content

Commit fabaae8

Browse files
[dashboard] Fix usage/insights download toast description color (#20634)
Tool: gitpod/catfood.gitpod.cloud
1 parent f85a593 commit fabaae8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/dashboard/src/insights/download/DownloadInsights.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const DownloadInsightsToast = ({ organizationId, from, to, organizationNa
8282
<div className="flex flex-row items-start justify-between space-x-2">
8383
<div>
8484
<span>Insights export complete.</span>
85-
<p className="dark:text-gray-500">
85+
<p className="text-pk-content-invert-primary/90">
8686
{readableSize} &middot; {formattedCount} {data.count !== 1 ? "entries" : "entry"} exported
8787
</p>
8888
</div>

components/dashboard/src/usage/download/DownloadUsage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const DownloadUsageToast: FC<DownloadUsageToastProps> = ({ attributionId, endDat
124124
<div className="flex flex-row items-start justify-between space-x-2">
125125
<div>
126126
<span>Usage export complete.</span>
127-
<p className="dark:text-gray-500">
127+
<p className="text-pk-content-invert-primary/90">
128128
{readableSize} &middot; {formattedCount} {data.count !== 1 ? "entries" : "entry"} exported
129129
</p>
130130
</div>

0 commit comments

Comments
 (0)