Skip to content

Commit

Permalink
Merge pull request #372 from SCBJ-7/feat/#351
Browse files Browse the repository at this point in the history
feat: 0원 막기
  • Loading branch information
Bumang-Cyber authored Jul 6, 2024
2 parents 62d2b79 + 569d421 commit f39cfed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/pages/transferWritingPage/TransferWriting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@ const TransferWriting = () => {
const dtAfter14 = new Date();
dtAfter14.setDate(dtAfter14.getDate() + 14);

const dummy = [
{
reservationId: 10,
hotelName: "이쁜 호텔",
roomName: "스텐다드 더블",
startDate: new Date(),
endDate: dtAfter14,
refundPrice: 100000,
purchasePrice: 150000,
remainingDays: 14,
remainingTimes: 14 * 24,
imageUrl:
"https://storage.googleapis.com/gweb-uniblog-publish-prod/images/PxG_GVE_Blog_Header-bike_1.width-1300.png",
},
];
// const dummy = [
// {
// reservationId: 10,
// hotelName: "이쁜 호텔",
// roomName: "스텐다드 더블",
// startDate: new Date(),
// endDate: dtAfter14,
// refundPrice: 100000,
// purchasePrice: 150000,
// remainingDays: 14,
// remainingTimes: 14 * 24,
// imageUrl:
// "https://storage.googleapis.com/gweb-uniblog-publish-prod/images/PxG_GVE_Blog_Header-bike_1.width-1300.png",
// },
// ];

return (
<S.Container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const CheckBox = styled.input.attrs({ type: "checkbox" })<{
}>`
width: 14px;
height: 14px;
border-radius: 1px;
accent-color: ${({ theme }) => theme.color.percentBlue};
`;

0 comments on commit f39cfed

Please sign in to comment.