Skip to content

Commit 3e9ef4d

Browse files
authored
Merge pull request #1152 from Adez017/revert-fixes
fix incosistency in UI
2 parents 285cdfe + 85d1e91 commit 3e9ef4d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/pages/community/index.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ const tableOfContents = [
116116
{ id: "documentation", title: "Documentation", icon: "📚" },
117117
{ id: "community", title: "Community", icon: "🤝" },
118118
{ id: "get-started", title: "Get Started", icon: "🚀" },
119-
{ id: "thank-you", title: "Thank You", icon: "💚" },
120119
];
121120

122121
export default function CommunityPage(): React.ReactElement {
@@ -274,15 +273,14 @@ export default function CommunityPage(): React.ReactElement {
274273
<motion.div
275274
key={section.id}
276275
id={section.id}
277-
className={`contribution-section ${
278-
(
276+
className={`contribution-section ${(
279277
isMobile
280278
? activeSections.includes(section.id)
281279
: selectedSection === section.id
282280
)
283281
? "selected"
284282
: ""
285-
}`}
283+
}`}
286284
initial={{ opacity: 0, y: 30 }}
287285
animate={{ opacity: 1, y: 0 }}
288286
transition={{ duration: 0.6, delay: 0.1 * index }}

0 commit comments

Comments
 (0)