From 962ff4667cf45f30f71c1c2a6172cca25da934d7 Mon Sep 17 00:00:00 2001 From: "Khoa.vo" Date: Wed, 7 Jan 2026 19:34:47 +0700 Subject: [PATCH] fix: Add explicit type for mergedCookies --- components/PromptHero.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/PromptHero.tsx b/components/PromptHero.tsx index 9372248..e67fa58 100644 --- a/components/PromptHero.tsx +++ b/components/PromptHero.tsx @@ -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 [];