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:
committed by
GitHub
parent
e3dafb502b
commit
7785b2dbf9
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user