Skip to content
Open
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
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"bech32": "^2.0.0",
"cookie": "^0.6.0",
"jsonwebtoken": "^9.0.2",
"next": "14.1.1",
"next": "14.2.35",
"nostr-tools": "^2.7.1",
"qrcode.react": "^3.1.0",
"react": "^18",
"react": "^18.3.1",
"react-confetti": "^6.1.0",
"react-dom": "^18",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-use": "^17.5.0",
"superjson": "^2.2.1",
Expand All @@ -50,13 +50,14 @@
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-next": "14.2.35",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prisma": "^5.17.0",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
2 changes: 1 addition & 1 deletion src/app/account/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default async function Account() {
<div>
{paycodes.length === 0 &&
<div className="flex flex-col gap-4 text-lg text-center border border-purple-800 rounded-xl p-6">
<p>You don't have any paycodes yet</p>
<p>You don&apos;t have any paycodes yet</p>
<div className="inline-block">
<Button href="/new">Create a new paycode</Button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/auth/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function Auth() {
if (user) {
return (
<div>
<p>You shouldn't be here</p>
<p>You shouldn&apos;t be here</p>
</div>
);
}
Expand Down
Loading