refactor: add apikey check before setup
This commit is contained in:
parent
74d391afc1
commit
f0ddf6c5dd
@ -7,10 +7,12 @@ import {
|
|||||||
import { env } from '../utils/env.js';
|
import { env } from '../utils/env.js';
|
||||||
import { prisma } from './_client.js';
|
import { prisma } from './_client.js';
|
||||||
|
|
||||||
lemonSqueezySetup({
|
if (env.billing.lemonSqueezy.apiKey) {
|
||||||
|
lemonSqueezySetup({
|
||||||
apiKey: env.billing.lemonSqueezy.apiKey,
|
apiKey: env.billing.lemonSqueezy.apiKey,
|
||||||
onError: (error) => console.error('Error!', error),
|
onError: (error) => console.error('Error!', error),
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
export type SubscriptionTierType =
|
export type SubscriptionTierType =
|
||||||
keyof typeof env.billing.lemonSqueezy.tierVariantId;
|
keyof typeof env.billing.lemonSqueezy.tierVariantId;
|
||||||
|
Loading…
Reference in New Issue
Block a user