Skip to content

Commit 1653bd1

Browse files
authored
Hide WebRAG button on Duck.ai Input Mode (#6419)
Task/Issue URL: https://app.asana.com/1/137249556945/project/488551667048375/task/1210830942545664?focus=true ### Description - Hides the unimplemented WebRAG button. ### Steps to test this PR - [ ] Open the Duck.ai Input Mode - [ ] Verify that the WebRAG button is hidden
1 parent 5397afc commit 1653bd1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

duckchat/duckchat-impl/src/main/java/com/duckduckgo/duckchat/impl/inputscreen/ui/InputScreenFragment.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ class InputScreenFragment : DuckDuckGoFragment(R.layout.fragment_input_screen) {
235235
}
236236
viewModel.visibilityState.onEach {
237237
binding.actionVoice.isInvisible = !it.voiceInputButtonVisible
238-
binding.actionForceWebSearch.isVisible = it.forceWebSearchButtonVisible
238+
// TODO: Uncomment when button is implemented
239+
// binding.actionForceWebSearch.isVisible = it.forceWebSearchButtonVisible
239240
}.launchIn(lifecycleScope)
240241
}
241242

0 commit comments

Comments
 (0)