Can't get a field from firestore

i am trying to get a field from my firestore database, but it isn’t saving the field to a varuble, when I use the store result state variable it says “ok” saving vaubles work, here is my config and database stuff


here is my rules config

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /game/{document=**} {
      allow read, write: if request.time > timestamp.date(2023, 1, 1);
      allow create: if request.time > timestamp.date(2023, 1, 1);
      allow update, delete: if request.time > timestamp.date(2023, 1, 1);
      allow write: if request.time > timestamp.date(2023, 1, 1);
    }
  }
}