Update Settings screen hint text to show correct default Bee URL

This commit is contained in:
kayos 2026-03-22 00:41:49 -07:00
parent 3b55dbd758
commit 84f0ab8d39

View file

@ -189,7 +189,7 @@ fun SettingsScreen(
label = "AdaCam API URL",
value = beeApiUrl,
onValueChange = { beeApiUrl = it },
hint = "http://10.77.0.1:5000"
hint = "http://192.168.0.10:5000"
)
}
@ -724,3 +724,4 @@ private fun formatTimeAgo(timestampSeconds: Long): String {
else -> "${diff / 86400} days ago"
}
}