Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UIU-3040: Update request header for pay several Fees/fines #2624

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* UserInformation in UserDetails to display profile picture. Refs UIU-3011.
* Enable effective call number column sorting in Open Loans screen. Refs UIU-3002.
* User Information in User Edit to display profile picture and update button set. Refs UIU-3005.
* Update request header for pay several Fees/fines. Refs UIU-3040.

## [10.0.4](https://github.com/folio-org/ui-users/tree/v10.0.4) (2023-11-10)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.3...v10.0.4)
Expand Down
6 changes: 1 addition & 5 deletions src/components/Accounts/Actions/ActionModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,7 @@ class ActionModal extends React.Component {
return fetch(`${okapi.url}/accounts-bulk/${checkAmount}`,
{
method: 'POST',
headers: {
'X-Okapi-Tenant': okapi.tenant,
'X-Okapi-Token': okapi.token,
'Content-Type': 'application/json',
},
...getHeaderWithCredentials(okapi),
body: JSON.stringify({ accountIds, amount })
});
};
Expand Down
Loading