Skip to content

Commit

Permalink
fix eslint 2
Browse files Browse the repository at this point in the history
  • Loading branch information
AksLolCoding authored Jan 6, 2025
1 parent 5856063 commit 8851cdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webview/frontend/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ function Judge(props: {
{window.showLiveUserCount && (
<>
<h3>Live user count</h3>
{liveUserCount} {liveUserCount === 1 ? "user" : "users"} online.
{liveUserCount} {liveUserCount === 1 ? 'user' : 'users'} online.

Check failure on line 564 in src/webview/frontend/App.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

Insert `{'·'}⏎·······················`
<hr />
</>
)}
Expand Down Expand Up @@ -654,7 +654,7 @@ function Judge(props: {
{window.showLiveUserCount && liveUserCount > 0 && (
<div className="liveUserCount">
<i className="codicon codicon-circle-filled color-green"></i>{' '}
{liveUserCount} {liveUserCount === 1 ? "user" : "users"} online.
{liveUserCount} {liveUserCount === 1 ? 'user' : 'users'} online.

Check failure on line 657 in src/webview/frontend/App.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

Insert `{'·'}⏎·······················`
</div>
)}
</div>
Expand Down

0 comments on commit 8851cdf

Please sign in to comment.