Skip to content

Commit

Permalink
Merge pull request #142 from Gosrock/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
9yujin authored Feb 21, 2022
2 parents 38dacbf + 061d783 commit 74dd3da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stories/Components/InputForm/Indicator/Timer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Timer = ({ time, setTime }) => {
useEffect(() => {
const tick = () => {
savedCallback.current();
console.log('tick');
//console.log('tick');
};
let timer;
if (isRunning) {
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Components/InputForm/InputForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const InputForm = ({ page, value, onChange, resend, ticketCount }) => {
newbie: {
type: 'string',
placeholder: '이름',
limit: 4
limit: 5
}
};
const [time, setTime] = useState(180);
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Components/Modal/Modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const Modal = ({

const copyNumber = () => {
const value = accountNumber.replace(/\-/g, ''); //특정문자(-) 제거
console.log(value);
//console.log(value);
navigator.clipboard.writeText(value);
toast();
};
Expand Down

0 comments on commit 74dd3da

Please sign in to comment.