This commit is contained in:
Max Goedjen
2025-09-03 01:07:18 -07:00
parent a4e1ab9eb6
commit 0e94dd6541
4 changed files with 25 additions and 48 deletions

View File

@@ -57,15 +57,10 @@ struct EmptyStoreModifiableView: View {
}
}
#if DEBUG
struct EmptyStoreModifiableView_Previews: PreviewProvider {
static var previews: some View {
Group {
EmptyStoreImmutableView()
EmptyStoreModifiableView()
}
}
#Preview {
EmptyStoreImmutableView()
}
#Preview {
EmptyStoreModifiableView()
}
#endif

View File

@@ -13,12 +13,7 @@ struct NoStoresView: View {
}
#if DEBUG
struct NoStoresView_Previews: PreviewProvider {
static var previews: some View {
NoStoresView()
}
#Preview {
NoStoresView()
}
#endif