Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaellis committed Jun 10, 2021
1 parent fb49616 commit 8a86f1b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .storybook/stories/TransformControls.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const Default = () => {
scene.add(mesh)
control.attach(mesh)
scene.add(control)
camera.position.set(0,1.5,-4)
camera.position.set(0, 1.5, -4)
camera.lookAt(mesh.position)
scene.background = new Color(0x000000).convertSRGBToLinear()

Expand Down Expand Up @@ -59,7 +59,7 @@ export const RotateStory = () => {
control.attach(mesh)
control.setMode('rotate')
scene.add(control)
camera.position.set(0,1.5,-4)
camera.position.set(0, 1.5, -4)
camera.lookAt(mesh.position)
scene.background = new Color(0x000000).convertSRGBToLinear()

Expand Down Expand Up @@ -92,7 +92,7 @@ export const ScaleStory = () => {
control.attach(mesh)
control.setMode('scale')
scene.add(control)
camera.position.set(0,1.5,-4)
camera.position.set(0, 1.5, -4)
camera.lookAt(mesh.position)
scene.background = new Color(0x000000).convertSRGBToLinear()

Expand All @@ -104,5 +104,3 @@ export const ScaleStory = () => {
return ''
}
ScaleStory.storyName = 'Scale'


0 comments on commit 8a86f1b

Please sign in to comment.