Skip to content

Commit

Permalink
fix(provider): fix ga and color bug (#763)
Browse files Browse the repository at this point in the history
* fix(provider): added missing npm package

* fix(provider): fixed color issue for control machine text
  • Loading branch information
jigar-arc10 authored Jan 30, 2025
1 parent 9ab53ef commit bff0985
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions apps/provider-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"lucide-react": "^0.395.0",
"next": "^14.2.15",
"next-themes": "^0.2.1",
"nextjs-google-analytics": "^2.3.7",
"postcss-nesting": "^12.0.2",
"react": "^18",
"react-dom": "^18",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ export const ControlMachineError: React.FC<ControlMachineErrorProps> = ({ onRetr
if (!activeControlMachine) {
return (
<Alert variant="destructive" className={className}>
<AlertTitle className="text-red-100">Control Machine Required</AlertTitle>
<AlertDescription className="text-red-200">Please connect your control machine first to start updating pricing settings.</AlertDescription>
<AlertTitle className="text-red-600 dark:text-red-100">Control Machine Required</AlertTitle>
<AlertDescription className="text-red-500 dark:text-red-200">
Please connect your control machine first to start updating pricing settings.
</AlertDescription>
</Alert>
);
}
Expand Down
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bff0985

Please sign in to comment.