Skip to content

Commit

Permalink
chore: fix max value
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaehiel committed Sep 19, 2023
1 parent 9599567 commit df091e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Avatar/Examples.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ ReflectiveFloor.argTypes = {
mixBlur: { control: { type: 'range', min: 0, max: 10, step: 0.1 } },
mixStrength: { control: { type: 'range', min: 0, max: 100, step: 1 } },
metalness: { control: { type: 'range', min: 0, max: 1, step: 0.01 } },
mirror: { control: { type: 'range', min: 0, max: 10, step: 1 } },
mirror: { control: { type: 'range', min: 0, max: 1, step: 1 } },
minDepthThreshold: { control: { type: 'range', min: 0, max: 10, step: 0.01 } },
maxDepthThreshold: { control: { type: 'range', min: 0, max: 10, step: 0.01 } },
depthScale: { control: { type: 'range', min: 0, max: 20, step: 0.01 } },
Expand Down

0 comments on commit df091e4

Please sign in to comment.