Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/billing/upgrade-plan-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ export function UpgradePlanModal({
variant={planOption === "Business" ? "default" : "outline"}
className={`w-full py-2 text-sm ${
planOption === "Business"
? "bg-[#fb7a00] text-white hover:bg-[#fb7a00]"
: "bg-gray-800 text-white hover:bg-gray-900 hover:text-white"
? "bg-[#fb7a00]/90 text-white hover:bg-[#fb7a00]"
: "bg-gray-800 text-white hover:bg-gray-900 hover:text-white dark:hover:bg-gray-700/80"
}`}
loading={selectedPlan === planOption} // Show loading only for the clicked plan
disabled={selectedPlan !== null}
Expand Down
4 changes: 2 additions & 2 deletions pages/settings/upgrade.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ export default function UpgradePage() {
variant={planOption === "Business" ? "default" : "default"}
className={`w-full py-2 text-sm ${
planOption === "Business"
? "bg-[#fb7a00] text-white hover:bg-[#fb7a00]/80"
: "bg-gray-800 text-white hover:bg-gray-900"
? "bg-[#fb7a00]/90 text-white hover:bg-[#fb7a00]"
: "bg-gray-800 text-white hover:bg-gray-900 dark:hover:bg-gray-700/80"
}`}
loading={selectedPlan === planOption} // Show loading only for the clicked plan
disabled={selectedPlan !== null}
Expand Down