I N F I N I T Y

This commit is contained in:
Atridad Lahiji 2023-08-08 22:39:15 -06:00
parent 48d20331fc
commit 5cb8a18b83
No known key found for this signature in database
GPG key ID: 7CB8245F56BC3880
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "sprintpadawan", "name": "sprintpadawan",
"version": "1.2.6", "version": "1.2.7",
"description": "Plan. Sprint. Repeat.", "description": "Plan. Sprint. Repeat.",
"private": true, "private": true,
"scripts": { "scripts": {

View file

@ -48,7 +48,7 @@ const Stats = () => {
<div className="stat-title">Users</div> <div className="stat-title">Users</div>
<div className="stat-value"> <div className="stat-value">
{usersCountLoading || usersCountFetching ? ( {usersCountLoading || usersCountFetching ? (
<span className="loading loading-dots loading-lg"></span> <span className="loading loading-infinity loading-lg"></span>
) : ( ) : (
<>{usersCount ? usersCount : "0"}</> <>{usersCount ? usersCount : "0"}</>
)} )}
@ -59,7 +59,7 @@ const Stats = () => {
<div className="stat-title">Rooms</div> <div className="stat-title">Rooms</div>
<div className="stat-value"> <div className="stat-value">
{roomsCountLoading || roomsCountFetching ? ( {roomsCountLoading || roomsCountFetching ? (
<span className="loading loading-dots loading-lg"></span> <span className="loading loading-infinity loading-lg"></span>
) : ( ) : (
<>{roomsCount ? roomsCount : "0"}</> <>{roomsCount ? roomsCount : "0"}</>
)} )}
@ -70,7 +70,7 @@ const Stats = () => {
<div className="stat-title">Votes</div> <div className="stat-title">Votes</div>
<div className="stat-value"> <div className="stat-value">
{votesCountLoading || votesCountFetching ? ( {votesCountLoading || votesCountFetching ? (
<span className="loading loading-dots loading-lg"></span> <span className="loading loading-infinity loading-lg"></span>
) : ( ) : (
<>{votesCount ? votesCount : "0"}</> <>{votesCount ? votesCount : "0"}</>
)} )}