in ui-react/src/components/App.tsx [98:102]
async componentDidUpdate(prevProps: Readonly<any>, prevState: Readonly<State>) {
if (prevState.authState !== this.state.authState && this.state.authState === "signedIn") {
await this.getAllPets();
}
}