I uploaded image to firestore storeage
Image showing perfectly while testing for all user
but not showing if use web publish both on pc and mobile even uploaded user.
it showing white.
I user default rule
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if false;
}
match /users/{userId}/{allPaths=**} {
allow read: if true;
allow write: if request.auth.uid == userId;
}
}
}