diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4aa1422c..7e7aa473 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
## 5.2.0 (IN PROGRESS)
* UX Consistency: HTML Page Title display when the third pane (detail record) displays. Refs UIORGS-423.
+* Settings > Organizations > Banking information is not properly fenced off by permissions. Refs UIORGS-436.
## [5.1.1](https://github.com/folio-org/ui-organizations/tree/v5.1.1) (2024-04-18)
[Full Changelog](https://github.com/folio-org/ui-organizations/compare/v5.1.0...v5.1.1)
diff --git a/src/Settings/SettingsPage.js b/src/Settings/SettingsPage.js
index 5dd8ba63..833afab1 100644
--- a/src/Settings/SettingsPage.js
+++ b/src/Settings/SettingsPage.js
@@ -13,19 +13,19 @@ const pages = [
{
component: CategorySettings,
label: ,
- perm: 'settings.organizations.enabled',
+ perm: 'ui-organizations.settings.view',
route: 'category',
},
{
component: TypeSettings,
label: ,
- perm: 'settings.organizations.enabled',
+ perm: 'ui-organizations.settings.view',
route: 'type',
},
{
component: BankingInformationSettings,
label: ,
- perm: 'settings.organizations.enabled',
+ perm: 'ui-organizations.settings.view',
route: 'banking-information',
},
];