Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/src/main/java/to/bitkit/ui/components/BottomSheet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.Shape
import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.semantics.testTagsAsResourceId
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp
Expand Down Expand Up @@ -62,7 +64,7 @@ fun BottomSheet(
) {
ModalBottomSheet(
onDismissRequest = onDismissRequest,
modifier = modifier,
modifier = modifier.semantics { testTagsAsResourceId = true },
sheetState = sheetState,
sheetMaxWidth = sheetMaxWidth,
shape = shape,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ object BoostTransactionTestTags {
const val ESTIMATE_TIME = "estimate_time"
const val TOTAL_FEE_PRIMARY = "total_fee_primary"
const val TOTAL_FEE_SECONDARY = "total_fee_secondary"
const val SWIPE_TO_CONFIRM = "swipe_to_confirm"
const val SWIPE_TO_CONFIRM = "GRAB"
const val DECREASE_FEE_BUTTON = "Minus"
const val INCREASE_FEE_BUTTON = "Plus"
const val FEE_RATE_TEXT = "fee_rate_text"
Expand Down