Skip to content

Commit 95943d9

Browse files
Update App.tsx
1 parent ad21b7c commit 95943d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/App.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export default class App extends React.Component<IProps,
3838
const items = new Array<IItem>();
3939
const total = Math.ceil(((window.innerWidth - 40) / 350) * (window.innerHeight - 160) / 90);
4040
for (let lv = 1; lv <= total; lv++) {
41-
let left = this.randomNumber(1, 12);
42-
let right = this.randomNumber(1, 12);
41+
let left = this.randomNumber(1, 15);
42+
let right = this.randomNumber(1, 15);
4343

4444
const rnd = this.randomNumber(1, 100) % 2;
4545
const operator = rnd === 0
@@ -123,4 +123,4 @@ export default class App extends React.Component<IProps,
123123
</div>
124124
)
125125
}
126-
}
126+
}

0 commit comments

Comments
 (0)