Skip to content

Commit

Permalink
[๐Ÿšจ fix] ์ธ์ฆ ๋‚ด์—ญ ํŽ˜์ด์ง€์—์„œ์˜ ํ•˜์ด๋“œ๋ ˆ์ด์…˜ ์—๋Ÿฌ๋ฅผ ๋ฐฉ์ง€ํ•˜๊ธฐ ์œ„ํ•ด ๊ธฐ๋ณธ ๊ฐ’ ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeyooon committed Apr 14, 2024
1 parent 87af406 commit 695be97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/verification/collection/Stamp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ interface IStamp {
}

export default function Stamp({ results, startDate }: IStamp) {
const diff = Math.abs(calculateDDay(startDate));
let diff = 1;
diff = Math.abs(calculateDDay(startDate));
const resultStamps = results.map((value, index) => {
if (index <= diff - 1 && value === 0) {
return 1;
Expand Down

0 comments on commit 695be97

Please sign in to comment.