From 89776eaac888aa585f4d7f24bd7ba1e0029060e8 Mon Sep 17 00:00:00 2001 From: Andrea Cappuccio Date: Thu, 20 Jul 2023 20:44:06 +0200 Subject: [PATCH] chore: fix typo (#2898) --- packages/fiber/src/core/hooks.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fiber/src/core/hooks.tsx b/packages/fiber/src/core/hooks.tsx index 5ba0b0f302..42cd9449dc 100644 --- a/packages/fiber/src/core/hooks.tsx +++ b/packages/fiber/src/core/hooks.tsx @@ -99,7 +99,7 @@ function loadingFn>( res(data) }, onProgress, - (error) => reject(new Error(`Could not load ${input}: ${error.message})`)), + (error) => reject(new Error(`Could not load ${input}: ${error.message}`)), ), ), ),