Skip to content

Commit 30852fa

Browse files
committed
Fix: Admin 페이지에서 총 가입자 수 표시 방식 수정
1 parent 233ff7f commit 30852fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/admin/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export default function Page() {
170170
bottomContent={
171171
<div className='relative'>
172172
<AdminTableBottomContent page={page} totalPages={totalPages} onChangePage={(newPage) => setPage(newPage)} />
173-
<div className='text-white text-base absolute right-0 bottom-0'>총 가입자 수 : {totalUsers}</div>
173+
<div className='text-white text-base absolute right-0 bottom-0'>{totalUsers}</div>
174174
</div>
175175
}
176176
topContent={

0 commit comments

Comments
 (0)