We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1748f42 commit 1fc52e1Copy full SHA for 1fc52e1
with-apollo/App.js
@@ -133,6 +133,15 @@ function StarshipDetails({ starship }) {
133
<Text>- {starship.cost_in_credits ?? "N/A"} credits</Text>
134
</View>
135
136
+ {starship.manufacturers?.length > 0 && (
137
+ <View style={styles.section}>
138
+ <Text style={styles.label}>Manufacturers</Text>
139
+ {starship.manufacturers.map((m, idx) => (
140
+ <Text key={idx}>- {m}</Text>
141
+ ))}
142
+ </View>
143
+ )}
144
+
145
{starship.film_names?.length > 0 && (
146
<View style={styles.section}>
147
<Text style={styles.label}>Appeared in</Text>
0 commit comments