fake auth session store for lightweight previews without the database listeners and all

This commit is contained in:
talksik
2021-12-20 01:00:03 -08:00
parent c05d0f8edf
commit 158341242b
2 changed files with 8 additions and 3 deletions
@@ -379,7 +379,7 @@ struct InnerCircleView: View {
struct InnerCircleView_Previews: PreviewProvider {
static var previews: some View {
InnerCircleView().environmentObject(AuthSessionStore())
InnerCircleView().environmentObject(AuthSessionStore(isPreview: true))
}
}