Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: 정규형 방식 변경3 #48

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/Sales/MainSales.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const MainSales = () => {
return (
<section className="sales-main__wrapper">
<div className='sales-top__wrapper'>
<div className="sales-total-revenue">레디베리를 통해 누적 <span style={{ 'color': '#d82356', "fontSize": "2.8125rem" }}>{totalSale.toString().replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ",")}원</span>의 매출을 올렸습니다.</div>
<div className="sales-total-revenue">레디베리를 통해 누적 <span style={{ 'color': '#d82356', "fontSize": "2.8125rem" }}>{totalSale.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",")}원</span>의 매출을 올렸습니다.</div>
<div className='sales-total-txt__wrapper'>
<span className='sales-total-txt'>매출 발생 후 최대 5영업일 이내에 중개 수수료 차감 후 입금 예정 ( 문의 : 오남택 010-9295-5340 )</span>
<span className='sales-total-date'>(기준 {moment().format("M")}월 {moment().format("D")}일 {moment().format("HH")}:{moment().format("mm")})</span>
Expand Down
Loading