fix: profile claim name length (#1144)
fixes the caim name length on the profile claim popup
This commit is contained in:
@@ -90,7 +90,7 @@ export const profileRouter = router({
|
|||||||
try {
|
try {
|
||||||
const { url } = input;
|
const { url } = input;
|
||||||
|
|
||||||
if (IS_BILLING_ENABLED() && url.length <= 6) {
|
if (IS_BILLING_ENABLED() && url.length < 6) {
|
||||||
const subscriptions = await getSubscriptionsByUserId({
|
const subscriptions = await getSubscriptionsByUserId({
|
||||||
userId: ctx.user.id,
|
userId: ctx.user.id,
|
||||||
}).then((subscriptions) =>
|
}).then((subscriptions) =>
|
||||||
|
|||||||
Reference in New Issue
Block a user