Skip to content

Commit

Permalink
update pricing (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbddesign committed Aug 27, 2024
1 parent b95cc81 commit 754a85b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/new/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function New() {
active={!freeName}
onClick={() => setFreeName(!freeName)}
>
Choose a Name (1000 sats)
Choose a Name (5,000 sats)
</Button>
<Button
format="outline"
Expand Down Expand Up @@ -217,7 +217,7 @@ export default function New() {
>
<div className="flex flex-row justify-between items-center mb-4">
<p className="text-center text-2xl mb-0 font-semibold">
1,000 sats
5,000 sats
</p>
<div className="flex flex-row gap-1 items-center justify-end font-bold">
Awaiting Payment <RefreshIcon className="w-6 h-6 animate-spin" />
Expand Down
2 changes: 1 addition & 1 deletion src/server/api/routers/payCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export const payCodeRouter = createTRPCRouter({
}

// TODO: calculate price
const priceMsats = 1000000;
const priceMsats = 5000000;
let invoice;

try {
Expand Down

0 comments on commit 754a85b

Please sign in to comment.