SwiftUI FirestoreQuery Accessing StateObject error

I'm getting a runtime error stating: "Accessing StateObject's object without being installed on a View. This will create a new instance each time." XCode is showing this information next to a line in FirestoreQuery referring to wrapped values. It's happening when I try to get a User object from Firebase in order to display a user profile. Here's the code for the ProfileView, ProfileViewModel, and FirebaseQuery. I've bolded the section of FirestoreQuery that seems to be the issue.

I've already tried just reverting back to an old commit and building along each line to try to pinpoint the problem. Both when I did this and the first time it occurred, when I tried to cmd + z to before the error occurred, the error was still there. I'm not sure if it's somehow the way that I'm structuring the Query, but I'm pretty new to Swift and Firebase, so I followed a tutorial for that part.

I don't have enough characters to post the code here, so if you have any idea of what the problem might be without that context, please let me know!

SwiftUI FirestoreQuery Accessing StateObject error
 
 
Q