fix: profile claim name length (#1144)

fixes the caim name length on the profile claim popup
This commit is contained in:
Timur Ercan
2024-05-07 09:42:16 +02:00
committed by GitHub
parent e8d4fe46e5
commit dc11676d28

View File

@ -90,7 +90,7 @@ export const profileRouter = router({
try {
const { url } = input;
if (IS_BILLING_ENABLED() && url.length <= 6) {
if (IS_BILLING_ENABLED() && url.length < 6) {
const subscriptions = await getSubscriptionsByUserId({
userId: ctx.user.id,
}).then((subscriptions) =>