chore: update dependencies and clean up test page

- Updated @react-email/render from 2.0.6 to 2.0.8
- Updated pg from 8.19.0 to 8.20.0
- Updated react-is from 19.2.3 to 19.2.5
- Updated @types/pg from 8.16.0 to 8.20.0
- Updated jsdom from 29.0.2 to 29.1.1
- Updated react-email from 5.2.10 to 6.0.5
- Updated vitest from 4.1.4 to 4.1.5
- Removed OnboardingDemo component from test page for simplification
This commit is contained in:
Marco Pedone 2026-05-05 15:16:21 +02:00
parent fddb1ba9f4
commit d6c0e67bfd
3 changed files with 344 additions and 426 deletions

File diff suppressed because it is too large Load diff

View file

@ -36,7 +36,7 @@
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.12",
"@react-email/render": "^2.0.6",
"@react-email/render": "^2.0.8",
"@stripe/react-stripe-js": "^5.6.0",
"@stripe/stripe-js": "^8.8.0",
"@t3-oss/env-nextjs": "^0.13.11",
@ -79,7 +79,7 @@
"nuqs": "^2.8.9",
"papaparse": "^5.5.3",
"pdf-lib": "^1.17.1",
"pg": "^8.19.0",
"pg": "^8.20.0",
"postcss": "^8.5.13",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
@ -87,7 +87,7 @@
"react-dom": "^19.2.3",
"react-hook-form": "^7.72.1",
"react-hot-toast": "^2.5.2",
"react-is": "^19.2.3",
"react-is": "^19.2.5",
"react-leaflet": "^5.0.0",
"react-number-format": "^5.4.5",
"react-pdf": "^10.4.1",
@ -117,7 +117,7 @@
"@types/nodemailer": "^7.0.11",
"@types/nodemailer-html-to-text": "^3.1.3",
"@types/papaparse": "^5.5.2",
"@types/pg": "^8.16.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/react-is": "^19.2.0",
@ -125,16 +125,16 @@
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"jiti": "^2.6.1",
"jsdom": "^29.0.2",
"jsdom": "^29.1.1",
"kanel": "^4.0.1",
"kanel-kysely": "^4.0.0",
"kanel-zod": "^4.0.0",
"knip": "^6.4.1",
"npm-run-all": "^4.1.5",
"react-email": "^5.2.10",
"react-email": "^6.0.5",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.4"
"vitest": "^4.1.5"
},
"ct3aMetadata": {
"initVersion": "7.9.0"

View file

@ -1,12 +1,5 @@
import OnboardingDemo from "~/components/onboarding";
const Test = () => {
return (
<main className="flex flex-col gap-4 p-8">
test
<OnboardingDemo />
</main>
);
return <main className="flex flex-col gap-4 p-8">test</main>;
};
export default Test;