Current ``` const ref = this.storage.ref('users/davideast.jpg'); this.profileUrl = ref.getDownloadUrl(); ``` Fix ``` const ref = this.storage.ref('users/davideast.jpg'); this.profileUrl = ref.getDownloadURL(); ```