File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/site/components/EOL/EOLReleaseTable Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11'use client' ;
22
33import { useTranslations } from 'next-intl' ;
4- import { useState } from 'react' ;
4+ import { Fragment , useState } from 'react' ;
55import type { FC } from 'react' ;
66
77import FormattedTime from '#site/components/Common/FormattedTime' ;
@@ -38,8 +38,8 @@ const EOLReleaseTable: FC = () => {
3838 </ thead >
3939 < tbody >
4040 { eolReleases . map ( release => (
41- < >
42- < tr key = { release . major } >
41+ < Fragment key = { release . major } >
42+ < tr >
4343 < td data-label = "Version" >
4444 v{ release . major } { ' ' }
4545 { release . codename ? `(${ release . codename } )` : '' }
@@ -67,7 +67,7 @@ const EOLReleaseTable: FC = () => {
6767 open = { currentModal === release . version }
6868 onOpenChange = { open => open || setCurrentModal ( undefined ) }
6969 />
70- </ >
70+ </ Fragment >
7171 ) ) }
7272 </ tbody >
7373 </ table >
You can’t perform that action at this time.
0 commit comments