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
Currently we are not using the Document title in Care. We need to implement some effects that update the title when you load a page. I think an approach like this would work well.
useEffect(()=>{
const title = document.title
document.title = "Patient Consultation"
return (() => {
document.title = title
})
},[])
Let's make this a habit for any page that we work on.
Currently we are not using the Document title in Care. We need to implement some effects that update the title when you load a page. I think an approach like this would work well.
Let's make this a habit for any page that we work on.
@bodhish opinions?
The text was updated successfully, but these errors were encountered: