Skip to content

Commit 16bdbfc

Browse files
authored
Merge pull request #4 from cwage/fix-placeholder
Remove hardcoded IP from placeholder
2 parents def5ed1 + 0dfc9a3 commit 16bdbfc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId = "com.anchor.app"
1414
minSdk = 26
1515
targetSdk = 35
16-
versionCode = 2
17-
versionName = "0.2.0"
16+
versionCode = 3
17+
versionName = "0.2.1"
1818
}
1919

2020
buildTypes {

app/src/main/java/com/anchor/app/ui/screens/AddHostScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fun AddHostScreen(
5555
value = hostname,
5656
onValueChange = { hostname = it },
5757
label = { Text("Hostname / IP") },
58-
placeholder = { Text("10.10.15.3") },
58+
placeholder = { Text("example.com") },
5959
singleLine = true,
6060
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Uri, autoCorrect = false),
6161
modifier = Modifier.fillMaxWidth()

0 commit comments

Comments
 (0)