File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff 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
122121export 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 } }
You can’t perform that action at this time.
0 commit comments