From da9218c03960c71779fc712396b52f88c2ced147 Mon Sep 17 00:00:00 2001 From: Cody Bennett Date: Sat, 4 Nov 2023 10:16:30 -0500 Subject: [PATCH] chore: lint --- packages/fiber/src/native/polyfills.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/fiber/src/native/polyfills.ts b/packages/fiber/src/native/polyfills.ts index 8d5405273f..49baad2edd 100644 --- a/packages/fiber/src/native/polyfills.ts +++ b/packages/fiber/src/native/polyfills.ts @@ -166,7 +166,8 @@ export function polyfills() { case 'arrayBuffer': return onLoad?.(data.buffer) case 'blob': - return onLoad?.(new Blob([data.buffer]) as any) + // @ts-ignore + return onLoad?.(new Blob([data.buffer])) // case 'document': case 'json': return onLoad?.(JSON.parse(THREE.LoaderUtils.decodeText(data)))