diff --git a/.gitignore b/.gitignore index ccff3db..2865e82 100644 --- a/.gitignore +++ b/.gitignore @@ -131,4 +131,7 @@ dist .yarn/unplugged .yarn/build-state.yml .yarn/install-state.gz -.pnp.* \ No newline at end of file +.pnp.* + +# Am I the only mac user +**/.DS_Store \ No newline at end of file diff --git a/frontend-next/src/app/page.js b/frontend-next/src/app/page.js index a2ab97f..57090bf 100644 --- a/frontend-next/src/app/page.js +++ b/frontend-next/src/app/page.js @@ -58,7 +58,8 @@ function Home() { } {statusCode == 200 && } - {(!isLoadingLoc && roomCount != 0) &&
Join others in {roomCount} rooms near you!
} + {(!isLoadingLoc && roomCount == 1) &&
Join others in {roomCount} room near you!
} + {(!isLoadingLoc && roomCount != 1 && roomCount != 0) &&
Join others in {roomCount} rooms near you!
} {(isLoadingLoc || (roomCount == 0 && !isLoadingLoc)) &&
Start the conversation today!
}