From e0548f552efeb63f52a8a04c1ab5e926082edd2e Mon Sep 17 00:00:00 2001
From: Sumin Hwang <163857590+tnals0924@users.noreply.github.com>
Date: Tue, 3 Mar 2026 02:10:43 +0900
Subject: [PATCH 1/3] =?UTF-8?q?feat:=20=EA=B7=BC=EB=AC=B4=EC=9E=90,=20?=
=?UTF-8?q?=EC=B4=9D=EB=AC=B4=EB=B6=80=EB=8F=84=20=EA=B4=80=EB=A6=AC?=
=?UTF-8?q?=EC=9E=90=20=EB=8C=80=EC=8B=9C=EB=B3=B4=EB=93=9C=EB=A1=9C=20?=
=?UTF-8?q?=EC=9D=B4=EB=8F=99=ED=95=A0=20=EC=88=98=20=EC=9E=88=EB=8F=84?=
=?UTF-8?q?=EB=A1=9D=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/mobile/SidebarMenu/index.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/components/mobile/SidebarMenu/index.tsx b/src/components/mobile/SidebarMenu/index.tsx
index 43004ac..3ae859b 100644
--- a/src/components/mobile/SidebarMenu/index.tsx
+++ b/src/components/mobile/SidebarMenu/index.tsx
@@ -18,6 +18,8 @@ interface SidebarProps {
role?: string;
}
+const adminRole = ['GA', 'WORKER', 'ADMIN'];
+
const menuItems = [
{ icon: IconRentalList, label: '복지 물품 목록', href: '/mobile/main' },
{ icon: IconRentalHistory, label: '대여기록', href: '/mobile/history' },
@@ -100,7 +102,7 @@ export default function Sidebar({
{/* 관리자 메뉴 */}
- {role === 'ADMIN' && (
+ {adminRole.includes(role) && (
<>
{adminItems.map(({ icon: Icon, label, href }) => {
From 333c18afd781b439fa10c53f0a3a3e14f31978eb Mon Sep 17 00:00:00 2001
From: Sumin Hwang <163857590+tnals0924@users.noreply.github.com>
Date: Tue, 3 Mar 2026 02:12:25 +0900
Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=EA=B4=80=EB=A6=AC=EC=9E=90=20?=
=?UTF-8?q?=ED=99=88=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=A7=81=ED=81=AC=20?=
=?UTF-8?q?=EB=B3=80=EA=B2=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/mobile/SidebarMenu/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/mobile/SidebarMenu/index.tsx b/src/components/mobile/SidebarMenu/index.tsx
index 3ae859b..077ca86 100644
--- a/src/components/mobile/SidebarMenu/index.tsx
+++ b/src/components/mobile/SidebarMenu/index.tsx
@@ -40,7 +40,7 @@ const adminItems = [
{
icon: IconAdminHomepage,
label: '관리자 홈페이지',
- href: 'https://www.billilge.site/desktop/login',
+ href: 'https://admin.billilge.site/login',
},
];
From d63d78fbdd0d0ecbba558e2bf4aabe70201fdb17 Mon Sep 17 00:00:00 2001
From: Sumin Hwang <163857590+tnals0924@users.noreply.github.com>
Date: Wed, 4 Mar 2026 15:03:22 +0900
Subject: [PATCH 3/3] =?UTF-8?q?chore:=20=EB=B0=B0=ED=8F=AC=20=ED=99=98?=
=?UTF-8?q?=EA=B2=BD=20caprover=20=EC=95=B1=20=EB=B3=80=EA=B2=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/deploy-prod.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml
index cf00e9a..aa5f83e 100644
--- a/.github/workflows/deploy-prod.yml
+++ b/.github/workflows/deploy-prod.yml
@@ -7,7 +7,7 @@ on:
env:
DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/billilge-client
- CAPROVER_APP: app
+ CAPROVER_APP: www
jobs:
build-and-deploy: