Skip to content

Commit

Permalink
SocialProviders에 ApiOnError 처리 (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
plgafhd authored Feb 5, 2025
1 parent 104a59f commit 185177a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,12 @@ fun SocialLinkPage() {
var disconnectSocialDialogState by remember { mutableStateOf(SocialLoginType.NONE) }

LaunchedEffect(Unit) {
socialLinkViewModel.fetchSocialProviders()
launchSuspendApi(
apiOnProgress = apiOnProgress,
apiOnError = apiOnError,
) {
socialLinkViewModel.fetchSocialProviders()
}
}

val handleFacebookConnect = {
Expand Down

0 comments on commit 185177a

Please sign in to comment.