6ba00bfbf9
getUserEmail() relied on getSession(), which returns null here because the Supabase session is intentionally never persisted to storage — so the onboarding email field stayed empty and Continue was blocked. SDK 0.2.5 captures the email in memory from the token-exchange response instead. Bump @abe-kap/appshell-sdk to ^0.2.5.
31 lines
661 B
JSON
31 lines
661 B
JSON
{
|
|
"name": "lynkeduppro-crm",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@abe-kap/appshell-sdk": "^0.2.5",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^1.21.0",
|
|
"next": "16.2.9",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"tailwind-merge": "^3.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.9",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|