diff --git a/frontend/src/pages/ServerDetail.jsx b/frontend/src/pages/ServerDetail.jsx index 53264c3..cf9d558 100644 --- a/frontend/src/pages/ServerDetail.jsx +++ b/frontend/src/pages/ServerDetail.jsx @@ -247,7 +247,7 @@ const ServerDetail = ({ isMobile = false }) => { >
{
diff --git a/frontend/src/pages/WorldsPage.jsx b/frontend/src/pages/WorldsPage.jsx
index 80a91e6..100d3a0 100644
--- a/frontend/src/pages/WorldsPage.jsx
+++ b/frontend/src/pages/WorldsPage.jsx
@@ -47,7 +47,7 @@ const WorldsPage = ({ isMobile = false }) => {
// 초기 데이터 요청
socket.emit('get_worlds');
- // 5초마다 갱신
+ // 1초마다 갱신
const interval = setInterval(() => {
socket.emit('get_worlds');
}, 1000);
@@ -190,8 +190,8 @@ const WorldsPage = ({ isMobile = false }) => {
{/* 모바일: 머리만, PC: 전신 */}