Skip to content

Commit

Permalink
Ticket #1220
Browse files Browse the repository at this point in the history
Social Oauth : Getting error "Provider is required.
  • Loading branch information
vikasranatalentelgia committed Oct 17, 2024
1 parent d1b2cea commit 560f023
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function SocialAuthVerification() {
<IconWrapper
socialLinks={socialLinks}
onUnlinkClick={onUnlinkClick}
onLinkClick={onLinkClick}
onLinkClick={()=>{onLinkClick("google")}}
provider=" "
icon={
<Image
Expand All @@ -92,7 +92,7 @@ function SocialAuthVerification() {
<IconWrapper
socialLinks={socialLinks}
onUnlinkClick={onUnlinkClick}
onLinkClick={onLinkClick}
onLinkClick={()=>{onLinkClick("facebook")}}
provider=""
icon={
<Image
Expand All @@ -114,7 +114,7 @@ function SocialAuthVerification() {
<IconWrapper
socialLinks={socialLinks}
onUnlinkClick={onUnlinkClick}
onLinkClick={onLinkClick}
onLinkClick={()=>{onLinkClick("linkedin")}}
provider=""
icon={
<Image
Expand All @@ -128,7 +128,7 @@ function SocialAuthVerification() {
<IconWrapper
socialLinks={socialLinks}
onUnlinkClick={onUnlinkClick}
onLinkClick={onLinkClick}
onLinkClick={()=>{onLinkClick("github")}}
provider=""
icon={
<Image
Expand Down

0 comments on commit 560f023

Please sign in to comment.