aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers/openaiWorker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workers/openaiWorker.ts')
-rw-r--r--apps/workers/openaiWorker.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workers/openaiWorker.ts b/apps/workers/openaiWorker.ts
index bad06bb3..704a6c04 100644
--- a/apps/workers/openaiWorker.ts
+++ b/apps/workers/openaiWorker.ts
@@ -172,7 +172,7 @@ async function fetchCustomPrompts(
const prompts = await db.query.customPrompts.findMany({
where: and(
eq(customPrompts.userId, userId),
- inArray(customPrompts.appliesTo, ["all", appliesTo]),
+ inArray(customPrompts.appliesTo, ["all_tagging", appliesTo]),
),
columns: {
text: true,