Skip to content

Commit

Permalink
fix(core): Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wootsbot committed Sep 20, 2024
1 parent 94883e4 commit d3b834b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,5 @@
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.0.5"
},
"packageManager": "pnpm@9.10.0"
"packageManager": "pnpm@9.11.0"
}
10 changes: 10 additions & 0 deletions src/app/(features)/authjs/manage-subscription.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import Button from '@design-system/button';

export function ManageSubscription() {
return (
<div>
<h3>Current Plan: Base</h3>
<Button>Manage Subscription</Button>
</div>
);
}
1 change: 0 additions & 1 deletion src/app/(features)/authjs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export default async function AuthjsPage() {
<p className="text-lg">{session?.user?.email}</p>
<p className="text-sm text-stone-500">{formattedDate}</p>
</div>

<section className="py-10">
<div className="flex flex-col gap-8">
<div className="flex items-end gap-3">
Expand Down
2 changes: 1 addition & 1 deletion src/libs/payments/stripe/checkout/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Stripe from 'stripe';

import pgk from '~/pgk';
import pgk from '~/pkg';

export const stripe = new Stripe(process.env.STRIPE_SECRET_KEY, {
// https://github.com/stripe/stripe-node#configuration
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
"incremental": true,
"noUncheckedIndexedAccess": true,
"paths": {
"~/env": ["./env.ts"],
"~/app/*": ["./src/app/*"],
"~/api/*": ["./src/app/api/*"],
"@design-system/*": ["./src/@design-system/*"],
"@/*": ["./src/*"],
"#/state/*": ["./src/state/*"],
Expand Down

0 comments on commit d3b834b

Please sign in to comment.