Skip to content

Commit

Permalink
console log to check why button is disabled in production
Browse files Browse the repository at this point in the history
  • Loading branch information
pulgueta committed Feb 9, 2024
1 parent 319064e commit ed49ecc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/(dashboard)/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ const Dashboard: NextPage<DashboardPage> = async ({ searchParams }) => {
const disabled =
user.plan === plan[user.plan] && filesCount >= maxFiles[user.plan];

console.log(files);
console.log({
user,
files,
filesCount,
disabled,
});

return (
<>
Expand Down

0 comments on commit ed49ecc

Please sign in to comment.