Show instructions only if the app is inactive

This commit is contained in:
Kenta Kubo 2020-09-27 21:42:17 +09:00
parent f8f6a49226
commit ba6a907c47

View file

@ -186,7 +186,9 @@ extension ContentView: View {
)
}
HowToActivateView(isSheet: false)
if !self.isEnabled {
HowToActivateView(isSheet: false)
}
}
}
}