Browse Source

docs(app): fix highlights in code demos

Jaime Torrealba 1 year ago
parent
commit
ae29f28cde
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/examples/load-models.md

+ 2 - 2
docs/examples/load-models.md

@@ -29,7 +29,7 @@ const { scene } = await useLoader(GLTFLoader, '/models/AkuAku.gltf')
 
 Then you can pass the model scene to a TresJS [`primitive`](/advanced/primitive) component to render it:
 
-```html{3}
+```html{2}
 <TresCanvas>
     <primitive :object="scene" />
 </TresCanvas>
@@ -113,7 +113,7 @@ const model = await useFBX('/models/AkuAku.fbx')
 
 Then is as straightforward as adding the scene to your scene:
 
-```html{3}
+```html{2}
 <TresCanvas shadows alpha>
     <primitive :object="scene" />
 </TresCanvas>