Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb committed Apr 27, 2024
1 parent 4be29a5 commit a79822a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: test
run: pnpm test
run: npm exec playwright install && pnpm test

1 change: 1 addition & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ const calculateNewMax = (
* @param val
* @returns
*/
// tslint:disable-next-line
const normalizeToPair = <T,>(val: T | [T, T]): [T, T] => (Array.isArray(val) ? val : [val, val]);

const definedProps = [
Expand Down

0 comments on commit a79822a

Please sign in to comment.