fixing folder name for android

This commit is contained in:
Roland Osborne 2024-06-10 13:47:05 -07:00
parent 8d473b342b
commit 2592c07e00
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ export function AudioAsset({ asset, dismiss }) {
<Text style={styles.downloadedLabel}>Documents</Text>
)}
{ Platform.OS !== 'ios' && (
<Text style={styles.downloadedLabel}>Downloads</Text>
<Text style={styles.downloadedLabel}>Download</Text>
)}
</View>
)}

View File

@ -26,7 +26,7 @@ export function ImageAsset({ asset, dismiss }) {
<Text style={styles.downloadedLabel}>Documents</Text>
)}
{ Platform.OS !== 'ios' && (
<Text style={styles.downloadedLabel}>Downloads</Text>
<Text style={styles.downloadedLabel}>Download</Text>
)}
</View>
)}

View File

@ -34,7 +34,7 @@ export function VideoAsset({ asset, dismiss }) {
<Text style={styles.downloadedLabel}>Documents</Text>
)}
{ Platform.OS !== 'ios' && (
<Text style={styles.downloadedLabel}>Downloads</Text>
<Text style={styles.downloadedLabel}>Download</Text>
)}
</View>
)}