@@ -875,7 +875,7 @@ const ListBlueprintsUI = ({
875875 data = { blueprints }
876876 keyExtractor = { ( blueprint : BlueprintListItem ) => blueprint . id }
877877 selectedIndex = { selectedIndex }
878- title = { `blueprints[${ totalCount } ]` }
878+ title = { `blueprints[${ hasMore ? ` ${ totalCount } +` : totalCount } ]` }
879879 columns = { blueprintColumns }
880880 emptyState = {
881881 < Text color = { colors . textDim } >
@@ -889,7 +889,7 @@ const ListBlueprintsUI = ({
889889 { ! showPopup && (
890890 < Box marginTop = { 1 } paddingX = { 1 } >
891891 < Text color = { colors . primary } bold >
892- { figures . hamburger } { totalCount }
892+ { figures . hamburger } { hasMore ? ` ${ totalCount } +` : totalCount }
893893 </ Text >
894894 < Text color = { colors . textDim } dimColor >
895895 { " " }
@@ -907,7 +907,7 @@ const ListBlueprintsUI = ({
907907 </ Text >
908908 ) : (
909909 < Text color = { colors . textDim } dimColor >
910- Page { currentPage + 1 } of { totalPages }
910+ Page { currentPage + 1 } of { hasMore ? ` ${ totalPages } +` : totalPages }
911911 </ Text >
912912 ) }
913913 </ >
@@ -917,7 +917,7 @@ const ListBlueprintsUI = ({
917917 •{ " " }
918918 </ Text >
919919 < Text color = { colors . textDim } dimColor >
920- Showing { startIndex + 1 } -{ endIndex } of { totalCount }
920+ Showing { startIndex + 1 } -{ endIndex } of { hasMore ? ` ${ totalCount } +` : totalCount }
921921 </ Text >
922922 { search . submittedSearchQuery && (
923923 < >
0 commit comments