fix: adding target blank to usage limits link in assist paywall (#26817) (#26792)

GitOrigin-RevId: da9624b51c0394c81f6355470322d7185a144b21
This commit is contained in:
Jimmy Domagala-Tang
2025-07-09 13:47:55 -07:00
committed by Copybot
parent 4df3aca805
commit 01fc171472

View File

@@ -647,13 +647,6 @@ const _ProjectController = {
}
}
const hasPaidSubscription = isPaidSubscription(subscription)
const hasManuallyCollectedSubscription =
subscription?.collectionMethod === 'manual'
const assistantDisabled = user.aiErrorAssistant?.enabled === false // the assistant has been manually disabled by the user
const canUseErrorAssistant =
!hasManuallyCollectedSubscription && !assistantDisabled
let featureUsage = {}
if (Features.hasFeature('saas')) {
@@ -734,6 +727,15 @@ const _ProjectController = {
fullFeatureSet = await UserGetter.promises.getUserFeatures(userId)
}
const hasPaidSubscription = isPaidSubscription(subscription)
const hasManuallyCollectedSubscription =
subscription?.collectionMethod === 'manual'
const assistantDisabled = user.aiErrorAssistant?.enabled === false // the assistant has been manually disabled by the user
const canUseErrorAssistant =
(!hasManuallyCollectedSubscription ||
fullFeatureSet?.aiErrorAssistant) &&
!assistantDisabled
const customerIoEnabled =
await SplitTestHandler.promises.hasUserBeenAssignedToVariant(
req,