Skip to content

Commit

Permalink
Fix Indent
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Feb 3, 2025
1 parent b14b559 commit 61b8807
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Faq/Faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ const Faq = ({
return (
<div className={display === 'grid' ? 'grid grid-cols-1 md:grid-cols-2 gap-4 md:gap-8 mb-8 md:mb-12' : ''}>
{faqWrap.map((faqItems, wrapIndex) => (
<div className={`flex flex-col gap-4 ${display === 'grid' ? 'md:gap-8' : ''}`} key={`faq-wrap-${wrapIndex}`}>
{faqItems.map((faq) => (
<div key={`faq-item-${faq.question}`}>
{renderFaqItem(faq, faqId++)}
</div>
))}
</div>
))}
<div className={`flex flex-col gap-4 ${display === 'grid' ? 'md:gap-8' : ''}`} key={`faq-wrap-${wrapIndex}`}>
{faqItems.map((faq) => (
<div key={`faq-item-${faq.question}`}>
{renderFaqItem(faq, faqId++)}
</div>
))}
</div>
))}
</div>
);
}
Expand Down

0 comments on commit 61b8807

Please sign in to comment.