fix: Add explicit type for mergedCookies
Some checks are pending
CI / build (18.x) (push) Waiting to run
CI / build (20.x) (push) Waiting to run

This commit is contained in:
Khoa.vo 2026-01-07 19:34:47 +07:00
parent ccfa897ac9
commit 962ff4667c

View file

@ -108,7 +108,7 @@ export function PromptHero() {
}
// Merge cookies safely
let mergedCookies = settings.metaCookies;
let mergedCookies: string | any[] = settings.metaCookies;
try {
const safeParse = (str: string) => {
if (!str || str === "undefined" || str === "null") return [];