From 0286053b81019aebaec64fc752bd814891855056 Mon Sep 17 00:00:00 2001 From: maxdemaio Date: Sat, 24 Aug 2024 09:53:45 -0400 Subject: [PATCH] show up as non AI --- src/app/utils/string.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/utils/string.ts b/src/app/utils/string.ts index 9965091..aeb50ed 100644 --- a/src/app/utils/string.ts +++ b/src/app/utils/string.ts @@ -9,6 +9,10 @@ export const hasAi = ( }, showOnlyAi = false, ): boolean => { + if (post.name === "OGHUNT") { + return false; + } + const excludedTerms = ["ai", "gpt", "artificial intelligence", "machine learning"]; const containsExcludedTerm = (text: string): boolean =>