Skip to content

Commit

Permalink
🐛 fix: responseMode value (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppeeou authored Feb 23, 2024
1 parent f5faa85 commit 766b6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const getAuthorizationUrl = (
url.searchParams.append('response_mode', 'form_post');
} else if (options.responseMode) {
// Set response_mode to input responseMode
url.searchParams.append('response_mode', options.response_mode);
url.searchParams.append('response_mode', options.responseMode);
}

return url.toString();
Expand Down

0 comments on commit 766b6db

Please sign in to comment.