Skip to content

Commit

Permalink
format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Codehagen committed Jan 24, 2024
1 parent 43a1660 commit 4659cbd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function RootLayout({ children }: RootLayoutProps) {
<head />
<body
className={cn(
"min-h-screen bg-background font-sans antialiased overflow-hidden",
"min-h-screen overflow-hidden bg-background font-sans antialiased",
fontSans.variable,
fontUrban.variable,
fontHeading.variable,
Expand Down
4 changes: 2 additions & 2 deletions components/investments/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export const mails = [
income: 12400,
limit: 25000,
monthlyIncomeData: generateMonthlyIncomeData(1052),
}
},
// {
// id: "3e7c3f6d-bdf5-46ae-8d90-171300f27ae2",
// name: "Regular Savings",
Expand Down Expand Up @@ -429,6 +429,6 @@ export const investmentData: InvestmentData[] = [
revenue: 16405,
subscription: 250,
mailId: "6c84fb90-12c4-11e1-840d-7b25c5ee775m",
}
},
// Add more items as needed...
];
4 changes: 2 additions & 2 deletions lib/subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export async function getUserSubscriptionPlan(
? userPlan?.stripeIds.monthly === user.stripePriceId
? "month"
: userPlan?.stripeIds.yearly === user.stripePriceId
? "year"
: null
? "year"
: null
: null;

let isCanceled = false;
Expand Down
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"contentlayer/generated": ["./.contentlayer/generated"],
"contentlayer/generated": ["./.contentlayer/generated"]
},
"plugins": [
{
"name": "next",
},
"name": "next"
}
],
"strictNullChecks": true,
"strictNullChecks": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".contentlayer/generated",
".contentlayer/generated"
],
"exclude": ["node_modules"],
"exclude": ["node_modules"]
}

0 comments on commit 4659cbd

Please sign in to comment.