Skip to content

Commit

Permalink
Merge faaf31e into 70cc57b
Browse files Browse the repository at this point in the history
  • Loading branch information
quackduck committed Nov 1, 2023
2 parents 70cc57b + faaf31e commit 692f311
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/components/extra-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export function ExtraContent() {
export function Status() {
const [, forceUpdate] = useState({});
const count = getCount();
const userString = count > 1 ? "users" : "user";
// useEffect(() => {
// const interval = setInterval(() => {
// forceUpdate({});
Expand All @@ -29,7 +30,7 @@ export function Status() {
<div className="animate-ping absolute inline-flex h-full w-full rounded-full bg-purple-400 opacity-75"></div>
<div className="relative inline-flex rounded-full h-3 w-3 bg-purple-500"></div>
</div>
{count} users connected.
{count} {userString} connected.
</div>
);
}
Expand Down

0 comments on commit 692f311

Please sign in to comment.