iOS client for Grain grain.social
ios photography atproto
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: allow gallery titles to wrap up to 3 lines

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+1 -1
+1 -1
Grain/Views/Components/GalleryCardView.swift
··· 494 494 VStack(alignment: .leading, spacing: 4) { 495 495 Text(gallery.title ?? "") 496 496 .font(.subheadline.weight(.semibold)) 497 - .lineLimit(1) 497 + .lineLimit(3) 498 498 .contentShape(Rectangle()) 499 499 .onTapGesture { onNavigate() } 500 500