Skip to content

Commit

Permalink
use dollars
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminshafii committed Nov 29, 2024
1 parent 2a7b443 commit deea0d0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugin/views/settings/top-up-credits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function TopUpCredits({
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${plugin.settings.API_KEY}`
Authorization: `Bearer ${plugin.settings.API_KEY}`,
},
});

Expand All @@ -36,7 +36,9 @@ export function TopUpCredits({

return (
<Button onClick={handleTopUp} disabled={loading} className="w-full">
{loading ? "Processing..." : "Top Up Credits (€15 for 5M)"}
{loading
? "Processing..."
: "Top Up $15 worth of credits"}
</Button>
);
}

0 comments on commit deea0d0

Please sign in to comment.