diff --git a/client/src/App.tsx b/client/src/App.tsx index e1c2ef2..5e3e947 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -476,9 +476,13 @@ function App() { return; } const locationLoginList = Object.entries(loginObject); + const locationPickCount = locationLoginList.length return ( - {locationName} + {(locationPickCount?? 0) > 1 ? ( + {locationName} ({locationPickCount}) + ) : ( + {locationName})}