Skip to content

Commit 2db7b8a

Browse files
committed
polish(mobile): cleaner connected subtitle (was 'exit 0 B ·' with a dangling separator)
The connected view showed 'exit <rxBytes> · <city>' — the byte count duplicates the RX stat below and the separator dangled when city was empty. Replace with a reassuring 'Protected · <city>' (or just 'Protected').
1 parent 0b79d72 commit 2db7b8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

clients/mobile/src/screens/ConnectScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function ConnectScreen({
6969
<Text style={styles.flag}>{target.flag}</Text>
7070
<Text style={styles.country}>{target.name}</Text>
7171
<Text style={styles.ip}>
72-
exit {vpn.status ? formatBytes(vpn.status.rxBytes) : '—'} · {target.city}
72+
{target.city ? `Protected · ${target.city}` : 'Protected'}
7373
</Text>
7474
</View>
7575
) : (

0 commit comments

Comments
 (0)