Make testPostStore mutable so we can append new drafts

This commit is contained in:
Angelo Stavrow 2020-07-29 10:31:06 -04:00
parent 641d022206
commit 9f63191e91
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -12,4 +12,4 @@ class PostStore: ObservableObject {
}
}
let testPostStore = PostStore(posts: testPostData)
var testPostStore = PostStore(posts: testPostData)