This commit is contained in:
focp212@naver.com
2025-11-04 08:57:12 +09:00
parent c1e631cbb4
commit c99b635950
5 changed files with 4 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ export const FaqDetail = ({
const [title, setTitle] = useState<string>();
const [contents, setContents] = useState<string>();
const onClickToClose = () => {
const onClickToClose = () => {
setDetailOn(false);
};

View File

@@ -20,7 +20,7 @@ export const SupportQnaItem = ({
<>
<div
className="inq-item"
onClick={ () => onClickToDetail() }
onClick={ onClickToDetail }
>
<div className="inq-line">
<div className="inq-title-text">{ qnaItem.title }</div>

View File

@@ -6,6 +6,7 @@ export const AllTransactionList = ({
listItems,
setDetailData
}: AllTransactionListProps) => {
const getListDateGroup = () => {
let rs = [];
let date = '';

View File

@@ -90,7 +90,7 @@ export const AllTransactionDetail = ({
tid: tid
}
});
}, 10)
}, 10);
};
const onClickToCancel = () => {

View File

@@ -91,11 +91,9 @@ const NiceCalendar = ({
};
const formatDay = (locale: string | undefined, date: Date) => {
// For Korean locale, return only the day number without '일'
return date.toLocaleString('en', {
day: 'numeric',
});
};
const formatShortWeekday = (locale: string | undefined, date: Date) => {
return date.toLocaleString(currentLocale, {