From 9f26650281366af5d465b1599c9e0f39e35d3a4f Mon Sep 17 00:00:00 2001 From: andretchen0 Date: Fri, 12 Jan 2024 12:41:01 +0100 Subject: [PATCH] chore(useGLTF): fix linter errors (#332) --- src/core/loaders/useGLTF/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/loaders/useGLTF/index.ts b/src/core/loaders/useGLTF/index.ts index 6ac41c9f..bcaffc79 100644 --- a/src/core/loaders/useGLTF/index.ts +++ b/src/core/loaders/useGLTF/index.ts @@ -66,11 +66,11 @@ export async function useGLTF( options: GLTFLoaderOptions = { draco: false, }, - extendLoader?: (loader: GLTFLoader) => void + extendLoader?: (loader: GLTFLoader) => void, ): Promise { return await useLoader( GLTFLoader, path, - setExtensions(options, extendLoader) - ); + setExtensions(options, extendLoader), + ) }