1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

EC-841 Fix Watch fetch cipher and added condition for previews (#2236)

This commit is contained in:
Federico Maccaroni
2022-12-13 16:36:45 -03:00
committed by GitHub
parent e3dafb502b
commit 7785b2dbf9

View File

@@ -86,7 +86,11 @@ struct CipherListView: View {
.navigationTitle("Bitwarden")
.navigationBarTitleDisplayMode(.inline)
.onAppear {
#if targetEnvironment(simulator) // for the preview
self.viewModel.fetchCiphers()
#else
self.viewModel.checkStateAndFetch()
#endif
}
.fullScreenCover(isPresented: $viewModel.showingSheet) {
BWStateView(viewModel.currentState)