diff --git a/apps/studio/components/interfaces/Home/ProjectList/ProjectCard.tsx b/apps/studio/components/interfaces/Home/ProjectList/ProjectCard.tsx
index 105f6f0bcd5b0..5ae3a2958f279 100644
--- a/apps/studio/components/interfaces/Home/ProjectList/ProjectCard.tsx
+++ b/apps/studio/components/interfaces/Home/ProjectList/ProjectCard.tsx
@@ -1,4 +1,4 @@
-import { GitBranch, Github } from 'lucide-react'
+import { Github } from 'lucide-react'
import CardButton from 'components/ui/CardButton'
import { ComputeBadgeWrapper } from 'components/ui/ComputeBadgeWrapper'
@@ -62,11 +62,6 @@ export const ProjectCard = ({
/>
)}
- {isBranchingEnabled && (
-
-
-
- )}
{isGithubIntegrated && (
<>
diff --git a/apps/studio/components/interfaces/Home/ProjectList/ProjectCardStatus.tsx b/apps/studio/components/interfaces/Home/ProjectList/ProjectCardStatus.tsx
index fc5d1624d5da3..1323add444088 100644
--- a/apps/studio/components/interfaces/Home/ProjectList/ProjectCardStatus.tsx
+++ b/apps/studio/components/interfaces/Home/ProjectList/ProjectCardStatus.tsx
@@ -142,11 +142,13 @@ export const ProjectCardStatus = ({
if (renderMode === 'badge') {
const badgeVariant = isCritical
? 'destructive'
- : projectStatus !== 'isHealthy'
+ : activeWarnings.length > 0 ||
+ projectStatus === 'isPauseFailed' ||
+ projectStatus === 'isRestoreFailed'
? 'warning'
- : activeWarnings.length > 0
- ? 'warning'
- : 'success'
+ : projectStatus === 'isHealthy'
+ ? 'success'
+ : 'default'
return alertDescription ? (
diff --git a/apps/studio/components/interfaces/Home/ProjectList/ProjectTableRow.tsx b/apps/studio/components/interfaces/Home/ProjectList/ProjectTableRow.tsx
index e9f27eebb6387..323ca7923fa96 100644
--- a/apps/studio/components/interfaces/Home/ProjectList/ProjectTableRow.tsx
+++ b/apps/studio/components/interfaces/Home/ProjectList/ProjectTableRow.tsx
@@ -1,4 +1,4 @@
-import { GitBranch, Github } from 'lucide-react'
+import { Github } from 'lucide-react'
import { useRouter } from 'next/router'
import InlineSVG from 'react-inlinesvg'
@@ -65,11 +65,6 @@ export const ProjectTableRow = ({
/>
)}
- {isBranchingEnabled && (
-
-
-
- )}
{isGithubIntegrated && (
<>