Skip to content

Commit 319b920

Browse files
committed
fix: remove undefined color class from incentive text
Removed the text-vscode-warningForeground class as it wasn't defined in index.css. The incentive text now uses default color which looks good.
1 parent 123c61d commit 319b920

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

webview-ui/src/components/welcome/WelcomeView.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,7 @@ const WelcomeView = () => {
113113
{provider.description}
114114
</div>
115115
{provider.incentive && (
116-
<div className="text-xs text-vscode-warningForeground mt-1">
117-
{provider.incentive}
118-
</div>
116+
<div className="text-xs mt-1">{provider.incentive}</div>
119117
)}
120118
</div>
121119
</div>

0 commit comments

Comments
 (0)