From 52c627bb11f74423e9593a9312557ffc729c14be Mon Sep 17 00:00:00 2001 From: Forrest Li Date: Fri, 28 Oct 2022 16:09:34 -0400 Subject: [PATCH] fix(fileLoader): incorrect return location --- src/store/fileLoader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/fileLoader.js b/src/store/fileLoader.js index 8f7f77cc..d1f6f77c 100644 --- a/src/store/fileLoader.js +++ b/src/store/fileLoader.js @@ -370,8 +370,8 @@ export default ({ proxyManager, girder }) => ({ index: fileIndex, error, }); + return ret; } - return ret; } }