mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
test
This commit is contained in:
parent
f78ccebe51
commit
a3d13c6803
|
@ -54,6 +54,14 @@ const activeNodeHasOpenAiApiCredential = computed(
|
|||
);
|
||||
|
||||
const userCanClaimOpenAiCredits = computed(() => {
|
||||
console.log(`settingsStore.isAiCreditsEnabled: ${settingsStore.isAiCreditsEnabled}`);
|
||||
console.log(`activeNodeHasOpenAiApiCredential.value: ${activeNodeHasOpenAiApiCredential.value}`);
|
||||
console.log(
|
||||
`postHogStore.isFeatureEnabled: ${postHogStore.isFeatureEnabled(AI_CREDITS_EXPERIMENT.name)}`,
|
||||
);
|
||||
console.log(`userHasOpenAiCredentialAlready.value: ${userHasOpenAiCredentialAlready.value}`);
|
||||
console.log(`userHasClaimedAiCreditsAlready.value: ${userHasClaimedAiCreditsAlready.value}`);
|
||||
|
||||
return (
|
||||
settingsStore.isAiCreditsEnabled &&
|
||||
activeNodeHasOpenAiApiCredential.value &&
|
||||
|
|
Loading…
Reference in a new issue