Fix permission type for payout navigation button

- Change checkGrant permission type from 'X' to 'W' in payout list-page
- Navigation button should use 'W' (write) permission instead of 'X' (execute)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-05 19:39:19 +09:00
parent 1038dea22e
commit ab528b38f1

View File

@@ -90,7 +90,7 @@ export const PayoutListPage = () => {
});
const onClickToNavigation = () => {
if (!checkGrant(53, 'X')) {
if (!checkGrant(53, 'W')) {
showAlert(t('common.nopermission'));
return;
}