Skip to content

Commit 8c483b1

Browse files
Alex KrawiecAlex Krawiec
authored andcommitted
Fix eslint issue
1 parent 0fa7052 commit 8c483b1

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/components/changelog/docsChangelog.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,11 @@ export async function DocsChangelog() {
7676
day: 'numeric',
7777
})}
7878
</time>
79+
{totalFiles > 0 && <span></span>}
7980
{totalFiles > 0 && (
80-
<>
81-
<span></span>
82-
<span>
83-
{totalFiles} file{totalFiles !== 1 ? 's' : ''} changed
84-
</span>
85-
</>
81+
<span>
82+
{totalFiles} file{totalFiles !== 1 ? 's' : ''} changed
83+
</span>
8684
)}
8785
</div>
8886
</header>

0 commit comments

Comments
 (0)