Skip to content

Commit

Permalink
feat(client): add redirectUri to getMultipleCredentialsGroupJoinUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
waddaboo committed Dec 11, 2024
1 parent 2000037 commit 039bba5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/client/src/utils/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,15 @@ export function getCredentialGroupJoinUrl(
export function getMultipleCredentialsGroupJoinUrl(
dashboardUrl: DashboardUrl,
groupId: string,
commitment: string
commitment: string,
redirectUri?: string
): string | null {
try {
return api.getMultipleCredentialsGroupJoinUrl(
dashboardUrl,
groupId,
commitment
commitment,
redirectUri
)
} catch (error: any) {
console.error(error)
Expand Down

0 comments on commit 039bba5

Please sign in to comment.