Skip to content

Commit

Permalink
[dashboard] Fix usage/insights download toast description color (#20634)
Browse files Browse the repository at this point in the history
Tool: gitpod/catfood.gitpod.cloud
  • Loading branch information
filiptronicek authored Feb 27, 2025
1 parent f85a593 commit fabaae8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const DownloadInsightsToast = ({ organizationId, from, to, organizationNa
<div className="flex flex-row items-start justify-between space-x-2">
<div>
<span>Insights export complete.</span>
<p className="dark:text-gray-500">
<p className="text-pk-content-invert-primary/90">
{readableSize} &middot; {formattedCount} {data.count !== 1 ? "entries" : "entry"} exported
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/dashboard/src/usage/download/DownloadUsage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const DownloadUsageToast: FC<DownloadUsageToastProps> = ({ attributionId, endDat
<div className="flex flex-row items-start justify-between space-x-2">
<div>
<span>Usage export complete.</span>
<p className="dark:text-gray-500">
<p className="text-pk-content-invert-primary/90">
{readableSize} &middot; {formattedCount} {data.count !== 1 ? "entries" : "entry"} exported
</p>
</div>
Expand Down

0 comments on commit fabaae8

Please sign in to comment.