Skip to content

Commit 363aace

Browse files
committed
chore: clean code
1 parent e327de5 commit 363aace

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const options = {
1212
};
1313

1414
if (os.type() === 'Windows_NT') {
15-
options.shell = true
15+
options.shell = true;
1616
}
1717

1818
let result;

src/CountDown/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const CountdownComponent = React.forwardRef<any, CountDownProps>(
7878
clear();
7979
};
8080

81-
useEffect(()=>{
81+
useEffect(() => {
8282
init();
8383
}, [initialSeconds]);
8484

src/Timer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const TimerComponent = React.forwardRef<any, TimerProps>((props, ref) => {
135135
useEffect(() => {
136136
init();
137137
}, [initialSeconds]);
138-
138+
139139
useEffect(() => {
140140
return () => {
141141
pause();

0 commit comments

Comments
 (0)