Skip to content

Commit

Permalink
configured the default git credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlwizard committed Nov 24, 2024
1 parent 93105a5 commit e2831d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -796,9 +796,9 @@ function complimentary(baseColor?: ColorToken, options: ComplimentaryOptions = {
? 180 *
rand(
// @ts-ignore:
or(extremums[0], MIN_EXTREMUM),
(extremums[0] || MIN_EXTREMUM),
// @ts-ignore:
or(extremums[1], MAX_EXTREMUM),
(extremums[1] || MAX_EXTREMUM),
)
: 180),
);
Expand Down

0 comments on commit e2831d4

Please sign in to comment.