You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Access runtime.env from Astro's Cloudflare adapter
86
109
// This is available when running on Cloudflare Workers
87
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any, typescript-eslint(no-unsafe-type-assertion) -- Astro locals accessed via internal symbol; no typed API available
@@ -112,9 +134,7 @@ function extractSearchableText(content: Record<string, unknown>): string {
112
134
consttext=extractPlainText(value);
113
135
if(text)parts.push(text);
114
136
}elseif(Array.isArray(value)){
115
-
// Assume Portable Text array
116
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any, typescript-eslint(no-unsafe-type-assertion) -- Portable Text arrays are untyped at this point; extractPlainText handles validation
0 commit comments