We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511b89a commit f404e1bCopy full SHA for f404e1b
1 file changed
components/RepositoryCard.tsx
@@ -99,7 +99,7 @@ const BranchSwitcher: React.FC<{
99
100
const branchDropdownTooltip = useTooltip(
101
branchInfo
102
- ? (hasOptions ? 'Switch branches' : 'No other branches available')
+ ? (currentBranch ? `Current branch: ${currentBranch}` : 'Branch name unavailable')
103
: 'Branch information unavailable'
104
);
105
const branchSearchTooltip = useTooltip(
0 commit comments