Skip to content

Commit

Permalink
fix(Texture): remove console.log (#2008)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimKraemer committed Jun 29, 2024
1 parent bd19791 commit c9a680c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/core/Texture.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export function useTexture<Url extends string[] | string | Record<string, string
const keyed = {} as MappedTextureType<Url>
let i = 0
for (const key in input) keyed[key] = textures[i++]
console.log('keyed', keyed)
return keyed
} else {
return textures
Expand Down

0 comments on commit c9a680c

Please sign in to comment.