-
- 가입 회원 {userStatisticsQuery.data?.activeUserCount ?? "-"}명
-
+
가입 회원 {userStatisticsQuery.data?.activeUserCount ?? "-"}명
}>계정 설정
diff --git a/src/app/styles.css b/src/app/styles.css
index 513657e..d67c353 100644
--- a/src/app/styles.css
+++ b/src/app/styles.css
@@ -59,17 +59,11 @@ textarea {
font-weight: 800;
}
-.admin-brand strong,
-.admin-brand small {
+.admin-brand strong {
display: block;
line-height: 1.2;
}
-.admin-brand small {
- margin-top: 3px;
- color: #6b7280;
-}
-
.admin-header {
display: flex;
align-items: center;
@@ -84,6 +78,7 @@ textarea {
display: flex;
gap: 12px;
align-items: center;
+ margin-left: auto;
}
.admin-header-actions a {
@@ -124,11 +119,6 @@ textarea {
margin: 0;
}
-.page-header p {
- margin: 6px 0 0;
- color: #6b7280;
-}
-
.metric-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
diff --git a/src/pages/AccountPage.tsx b/src/pages/AccountPage.tsx
index aeeaffe..5a2e865 100644
--- a/src/pages/AccountPage.tsx
+++ b/src/pages/AccountPage.tsx
@@ -54,7 +54,6 @@ export function AccountPage() {
diff --git a/src/pages/AnalyticsPage.tsx b/src/pages/AnalyticsPage.tsx
index 4612600..99e250a 100644
--- a/src/pages/AnalyticsPage.tsx
+++ b/src/pages/AnalyticsPage.tsx
@@ -6,7 +6,6 @@ export function AnalyticsPage() {
diff --git a/src/pages/LoginPage.tsx b/src/pages/LoginPage.tsx
index 57d82b1..73c0279 100644
--- a/src/pages/LoginPage.tsx
+++ b/src/pages/LoginPage.tsx
@@ -40,9 +40,6 @@ export function LoginPage() {
관리자 로그인
-
- Flint 운영자 콘솔에 접근하려면 관리자 계정으로 로그인해주세요.
-
diff --git a/src/pages/ModerationPage.tsx b/src/pages/ModerationPage.tsx
index e75df74..019b0e1 100644
--- a/src/pages/ModerationPage.tsx
+++ b/src/pages/ModerationPage.tsx
@@ -126,7 +126,6 @@ export function ModerationPage() {
diff --git a/src/pages/OverviewPage.tsx b/src/pages/OverviewPage.tsx
index f414b8c..feaef2b 100644
--- a/src/pages/OverviewPage.tsx
+++ b/src/pages/OverviewPage.tsx
@@ -50,7 +50,6 @@ export function OverviewPage() {
diff --git a/src/pages/TermsPage.tsx b/src/pages/TermsPage.tsx
index 22c74d3..378acf6 100644
--- a/src/pages/TermsPage.tsx
+++ b/src/pages/TermsPage.tsx
@@ -82,7 +82,6 @@ export function TermsPage() {
diff --git a/src/pages/UsersPage.tsx b/src/pages/UsersPage.tsx
index 6ef8e52..3d3b580 100644
--- a/src/pages/UsersPage.tsx
+++ b/src/pages/UsersPage.tsx
@@ -179,7 +179,6 @@ export function UsersPage() {
diff --git a/src/shared/api/adminLabels.ts b/src/shared/api/adminLabels.ts
index 14cb613..6cffbd8 100644
--- a/src/shared/api/adminLabels.ts
+++ b/src/shared/api/adminLabels.ts
@@ -48,9 +48,8 @@ export const userStatusLabels: Record = {
};
export const userRoleLabels: Record = {
- ADMIN: "관리자",
- FLINER: "일반 회원",
- FLING: "게스트"
+ FLINER: "플리너",
+ FLING: "일반회원"
};
export const termsTypeLabels: Record = {
diff --git a/src/shared/api/adminTypes.ts b/src/shared/api/adminTypes.ts
index 34d9801..01a8004 100644
--- a/src/shared/api/adminTypes.ts
+++ b/src/shared/api/adminTypes.ts
@@ -11,7 +11,7 @@ export type TermsSortBy = "VERSION" | "TYPE";
export type SortDirection = "ASC" | "DESC";
export type AdminDailyUserMetricsRange = "DAYS_7" | "DAYS_30" | "ALL";
export type UserStatus = "ACTIVE" | "WITHDRAWN";
-export type UserRole = "ADMIN" | "FLINER" | "FLING";
+export type UserRole = "FLINER" | "FLING";
export interface PaginationResponse {
data: T[];