diff --git a/src/components/Faq/Faq.tsx b/src/components/Faq/Faq.tsx
index e7fcc01..21ea3c2 100644
--- a/src/components/Faq/Faq.tsx
+++ b/src/components/Faq/Faq.tsx
@@ -117,13 +117,15 @@ const Faq = ({
let faqId = 0;
return (
- {faqWrap.map((faqItems, index) => (
-
- {faqItems.map((faq) => (
- renderFaqItem(faq, faqId++)
- ))}
-
- ))}
+ {faqWrap.map((faqItems, wrapIndex) => (
+
+ {faqItems.map((faq) => (
+
+ {renderFaqItem(faq, faqId++)}
+
+ ))}
+
+ ))}
);
}