fix: fixing prod
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Sabda Yagra 2026-02-25 19:47:08 +07:00
parent c6da9a9db0
commit cb9b3b6569
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const FAQS: React.FC = () => {
const [openIndex, setOpenIndex] = useState<number | null>(null);
const toggleFAQ = (index: number) => {
setOpenIndex(openIndex === index ? null : index);
setOpenIndex(openIndex === index ? null : index);
};
return (