I've got an SPList that has attachments.
Each item will have at least two attachments (that are images taken by a mobile app through a Power App application).

I am displaying the SPList data in a Power App Gallery. There are two image controls in the Gallery. Is this the proper way to display these images, or should I have a Gallery in a Gallery?
I can get the first 'related' image to show within the Gallery for each item but not the second related image. I am using the following -
Gallery Items:
SortByColumns(Filter('Test List', StartsWith(Title, TextSearchBox1_2.Text)), "Title", If(SortDescending1, Descending, Ascending))
Image Property:
First(ThisItem.Attachments).Value
