Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix plurality of "users" in status #788

Merged
merged 1 commit into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading