From 4a6320a06afbf2ad1429955e9cb017eeed68f702 Mon Sep 17 00:00:00 2001 From: Arjun Raj Date: Fri, 24 Jan 2025 09:54:23 -0500 Subject: [PATCH] Fix return code path TS error --- src/store/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/store/index.ts b/src/store/index.ts index 499178ea..314eeff9 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -659,10 +659,10 @@ export class Main extends VuexModule { } } } - } else { - logError("Store", "No large images found"); - return null; } + + logError("Store", "No large images found"); + return null; } @Action