Skip to content

Commit

Permalink
- added ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Svirsky committed Aug 15, 2024
1 parent fbdfef0 commit 29b5830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Earth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {useGLTF} from '@react-three/drei'
import {useFrame} from '@react-three/fiber';

export function Earth(props: any) {
const {nodes, materials}: any = useGLTF(import.meta.env.BASE_URL + '/earth.gltf');
const {nodes, materials}: any = useGLTF(import.meta.env.BASE_URL + 'earth.gltf');

const objRef = useRef<any>();

Expand All @@ -27,4 +27,4 @@ export function Earth(props: any) {
)
}

useGLTF.preload(import.meta.env.BASE_URL + '/earth.gltf')
useGLTF.preload(import.meta.env.BASE_URL + 'earth.gltf')

0 comments on commit 29b5830

Please sign in to comment.