refactor(FE): Update status badge text to use English labels

This commit is contained in:
rstubryan
2026-02-18 14:50:11 +07:00
parent 15289951e6
commit 02165df89c
2 changed files with 3 additions and 3 deletions
@@ -235,7 +235,7 @@ const ProjectFlockDetail = ({
).length > 0 && (
<StatusBadge
color='success'
text={`Kandang Aktif (${
text={`Kandang Active (${
projectFlock.kandangs?.filter(
(kandang) => kandang.status !== 'NON_ACTIVE'
).length ?? 0
@@ -249,7 +249,7 @@ const ProjectFlockDetail = ({
).length > 0 && (
<StatusBadge
color='error'
text={`Kandang Non-Aktif (${
text={`Kandang Closed (${
projectFlock.kandangs?.filter(
(kandang) => kandang.status === 'NON_ACTIVE'
).length ?? 0