You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
componentDidMount() is a pretty long function here, it might help if you moved some parts of this into helper functions. Also, componentDidMount() can be async, so you could make it async and use await for the getData calls.
facg6-react/src/components/student/index.jsx
Line 31 in 8260691
componentDidMount() is a pretty long function here, it might help if you moved some parts of this into helper functions. Also, componentDidMount() can be async, so you could make it async and use await for the getData calls.