We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae34fa commit 2ce67ecCopy full SHA for 2ce67ec
app/src/main/java/com/duckduckgo/app/browser/BrowserActivity.kt
@@ -842,11 +842,9 @@ open class BrowserActivity : DuckDuckGoActivity() {
842
val fragment = duckAiFragment
843
if (fragment?.isVisible == true) {
844
animateDuckAiFragmentOut {
845
- if (!supportFragmentManager.isStateSaved) {
846
- val transaction = supportFragmentManager.beginTransaction()
847
- transaction.hide(fragment)
848
- transaction.commit()
849
- }
+ val transaction = supportFragmentManager.beginTransaction()
+ transaction.hide(fragment)
+ transaction.commit()
850
}
851
852
0 commit comments