score:0

you are setting the snapshot on ref

firebase.database().ref().child('clients/kua');

so whenever something change/updates you get the whole kua with all of its child.

if you need any specific child under kua add the reference of that children like

firebase.database().ref().child(`clients/kua/${this.state.kuaedrpou}`);

maybe this way you can get your desired object


Related Query

More Query from same tag