Skip to content

Commit

Permalink
Fix CLI authorization screen
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jun 17, 2023
1 parent 6b8d0b5 commit 95e6a64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ fun AuthorizationScreen(cli: Boolean) {
.height(32.dp)
.padding(horizontal = 15.dp)
) {
val command = "tonbrett-cli login --auth-token=$token"
Row(
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier.fillMaxHeight()
Expand All @@ -101,7 +102,7 @@ fun AuthorizationScreen(cli: Boolean) {
horizontalArrangement = Arrangement.End,
modifier = Modifier.zIndex(2f).fillMaxWidth()
) {
CopyButton("tonbrett-cli login --auth-token=token")
CopyButton(command)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.9.8"
version = "1.9.9"

repositories {
mavenCentral()
Expand Down

0 comments on commit 95e6a64

Please sign in to comment.