fix(tui): splash: trigger smaller logo on 55 columns

Ayman Bagabas and Andrey Nering created

Co-authored-by: Andrey Nering <andreynering@users.noreply.github.com>

Change summary

internal/tui/components/chat/splash/splash.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/tui/components/chat/splash/splash.go 🔗

@@ -457,7 +457,7 @@ func (s *splashCmp) Cursor() *tea.Cursor {
 func (s *splashCmp) isSmallScreen() bool {
 	// Consider a screen small if either the width is less than 40 or if the
 	// height is less than 20
-	return s.width < 40 || s.height < 20
+	return s.width < 55 || s.height < 20
 }
 
 func (s *splashCmp) infoSection() string {