diff --git a/src/components/layout/push-workspace.tsx b/src/components/layout/push-workspace.tsx
index 734cec7..ce0c324 100644
--- a/src/components/layout/push-workspace.tsx
+++ b/src/components/layout/push-workspace.tsx
@@ -414,8 +414,10 @@ export function PushWorkspace({
{pushInfoData.branch}
-
- {uniqueRemotes.length <= 1 ? (
+ {uniqueRemotes.length > 0 && (
+
+ )}
+ {uniqueRemotes.length === 0 ? null : uniqueRemotes.length <= 1 ? (
{selectedRemote ?? "origin"}/{pushInfoData.branch}
@@ -453,6 +455,10 @@ export function PushWorkspace({
+ ) : uniqueRemotes.length === 0 ? (
+
+ {t("noRemoteConfigured")}
+
) : unpushedCommits.length === 0 ? (
{!hasUpstream
@@ -533,7 +539,9 @@ export function PushWorkspace({