Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ircfspace committed Mar 2, 2024
1 parent 2cd4b9e commit 814d624
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,17 @@ const Home: NextPage = () => {
</>
) : (
<>
{isRunning && (
{isRunning ? (
<>
<div className="clearfix"></div>
<div className="alert alert-info text-center">
Please Wait ...
</div>
</>
): (
<>
<div className="clearfix"></div>
<div className="alert alert-warning text-center">
There is nothing to display.
</div>
</>
Expand Down

0 comments on commit 814d624

Please sign in to comment.