diff --git a/components/CIStatusIndicator.tsx b/components/CIStatusIndicator.tsx
index 07ced98..0f705ce 100644
--- a/components/CIStatusIndicator.tsx
+++ b/components/CIStatusIndicator.tsx
@@ -77,14 +77,18 @@ export function CIStatusIndicator() {
className={`flex items-center gap-2 px-3 py-1.5 rounded-full bg-white/90 dark:bg-gray-900/90 backdrop-blur-sm border border-gray-200 dark:border-gray-700 shadow-sm ${getStatusColor()}`}
>
-
- {process.env.NEXT_PUBLIC_COMMIT_SHA || 'dev'}
-
+ {process.env.NEXT_PUBLIC_COMMIT_SHA ? (
+
+ {process.env.NEXT_PUBLIC_COMMIT_SHA}
+
+ ) : (
+ CI
+ )}
{getStatusIcon()}
{getStatusText()}
diff --git a/components/Header.tsx b/components/Header.tsx
index 2e779c1..cd1c243 100644
--- a/components/Header.tsx
+++ b/components/Header.tsx
@@ -60,7 +60,7 @@ export default function Header() {