From 783b0fbc36716eef21c6c931511d30376f8f575f Mon Sep 17 00:00:00 2001 From: systemBlue Date: Tue, 2 Jun 2026 18:50:49 -0400 Subject: [PATCH] fix: shorten the Pull Requests tab to "PRs" in repository detail The repository detail uses a four-segment control (Code, Issues, Pull Requests, Actions). "Pull Requests" dominated the width, squeezed the other segments, and truncated on narrower iPhones. "PRs" balances the segments and keeps them legible. Co-Authored-By: Claude Opus 4.8 (1M context) --- Forji/Forji/Views/RepositoryDetailView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Forji/Forji/Views/RepositoryDetailView.swift b/Forji/Forji/Views/RepositoryDetailView.swift index 022d50f..e103631 100644 --- a/Forji/Forji/Views/RepositoryDetailView.swift +++ b/Forji/Forji/Views/RepositoryDetailView.swift @@ -30,7 +30,7 @@ struct RepositoryDetailView: View { enum DetailTab: String { case code = "Code" case issues = "Issues" - case pulls = "Pull Requests" + case pulls = "PRs" case actions = "Actions" var icon: String {