Refactor additional service details and fix various bugs

- Convert detail pages to modal components for better UX
- Fix seq type from string to number for ARS and Alimtalk
- Add seq field to list item types
- Fix validation for card number input (remove formatting chars)
- Fix SMS payment resend seq parameter issue
- Improve z-index handling for snackBar and dialogs
- Add useSetHeaderTitle to link payment history wrap
- Remove unused detail page files
- Update payout filter and various detail components

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
HyeonJongKim
2025-11-05 19:41:05 +09:00
parent 50f062b3cf
commit 24435e47d6
30 changed files with 790 additions and 1869 deletions

View File

@@ -14,6 +14,7 @@ import { useStore } from '@/shared/model/store';
import { NumericFormat } from 'react-number-format';
import { snackBar } from '@/shared/lib';
import { useTranslation } from 'react-i18next';
import { showAlert } from '@/widgets/show-alert';
export const AccountHolderSearchRequestPage = () => {
const { navigate } = useNavigate();
@@ -73,12 +74,13 @@ export const AccountHolderSearchRequestPage = () => {
snackBar(`[${t('common.failed')}] ${errorMessage}`);
}
})
.catch((error) => {
console.error("Account holder search request failed: ", error)
const errorMessage = error?.response?.data?.error?.message ||
error?.message ||
t('common.errorOccurred');
snackBar(`[${t('common.failed')}] ${errorMessage}`);
.catch((e) => {
const errorMessage = e?.response?.data?.error?.message || e?.message ||t('common.errorOccurred');
if (e.response?.data?.error?.root !== "SystemErrorCode") {
snackBar(`[${t('common.failed')}] ${errorMessage}`);
} else {
showAlert(`[${t('common.failed')}] ${errorMessage}`)
}
})
};