Skip to content

Commit

Permalink
Fix return code path TS error
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunrajlab committed Jan 24, 2025
1 parent cc61721 commit 4a6320a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4a6320a

Please sign in to comment.