버그 픽스 및 정산 조회

This commit is contained in:
focp212@naver.com
2025-10-24 13:55:37 +09:00
parent b2568ea8ff
commit 7f891b85b1
13 changed files with 89 additions and 84 deletions

View File

@@ -9,7 +9,7 @@ export const ListDateGroup = ({
}: ListDateGroupProps) => {
moment.locale('ko');
const getStateDate = () => {
let stateDate = moment(date).format('YY.MM');
let stateDate = moment(date).format('YYYY.MM');
return stateDate;
};

View File

@@ -1,5 +1,4 @@
import moment from 'moment';
import { useEffect, useState } from 'react';
import { IMAGE_ROOT } from '@/shared/constants/common';
import { ListFilter } from './filter/list-filter';
@@ -91,7 +90,6 @@ export const ListWrap = () => {
date = issueDate;
}
if(date !== issueDate){
date = issueDate;
if(list.length > 0){
rs.push(
<ListDateGroup
@@ -101,6 +99,7 @@ export const ListWrap = () => {
></ListDateGroup>
);
}
date = issueDate;
list = [];
}
list.push(item);

View File

@@ -27,7 +27,7 @@ export const AmountSection = ({
};
const onClickToOpenDownloadBottomSheet = () => {
setDownloadBottomSheetOn(true);
};
return (