Skip to content

Commit d2bfa92

Browse files
committed
Fix: 대시보드 로드 실패 메시지 주석 처리 및 코드 정리
1 parent 5c2a79b commit d2bfa92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/admin/page.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,13 +264,13 @@ export default function Page() {
264264
<UserDetailsModal user={selectedUser} isOpen={modalOpen} onClose={handleCloseModal} preventClose />
265265

266266
{/* 대시보드 */}
267-
{statsError ? (
267+
{/* {statsError ? (
268268
<div className='px-[96px] mobile:px-[10px] text-red-400 py-4'>대시보드 로드 실패: {statsError}</div>
269269
) : statsLoading ? (
270270
<div className='px-[96px] mobile:px-[10px] text-white py-4'>대시보드 불러오는 중...</div>
271271
) : (
272272
<AdminDashboard members={statsUsers} totalCount={statsTotal} />
273-
)}
273+
)} */}
274274
</div>
275275
</>
276276
);

0 commit comments

Comments
 (0)