fix: rename bubble helper for clarity

Ayman Bagabas created

Change summary

internal/tui/bubble.go                 | 2 +-
internal/tui/bubbles/git/types/help.go | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

internal/tui/bubble.go 🔗

@@ -162,7 +162,7 @@ func (b Bubble) footerView() string {
 		h = []gittypes.HelpEntry{
 			{"tab", "section"},
 		}
-		if box, ok := b.boxes[b.activeBox].(gittypes.HelpableBubble); ok {
+		if box, ok := b.boxes[b.activeBox].(gittypes.BubbleHelper); ok {
 			help := box.Help()
 			for _, he := range help {
 				h = append(h, he)