Dinesh Rout

Results 2 comments of Dinesh Rout

> Solved it by formatting the scope as follows: `scope: 'email openid profile'` This worked for me Below is the code for reference ``` import { useLinkedIn } from 'react-linkedin-login-oauth2';...

Instead of this 👇 ``` const [isDialogOpen, setIsDialogOpen] = useState(false); open Details setIsDialogOpen(false)} type='button'> Close ``` I did this ``` const [isDialogOpen, setIsDialogOpen] = useState(false); Details setIsDialogOpen(false)} type='button'> Close setIsDialogOpen(true)}...