diff --git a/frontend/src/stores/roms.ts b/frontend/src/stores/roms.ts index 52240933c..5d8abf4d5 100644 --- a/frontend/src/stores/roms.ts +++ b/frontend/src/stores/roms.ts @@ -219,10 +219,7 @@ export default defineStore("roms", { romApi .getRecentPlayedRoms() .then(({ data: { items } }) => { - const filteredItems = items.filter( - (rom) => rom.rom_user.last_played, - ); - this.setContinuePlayingRoms(filteredItems); + this.setContinuePlayingRoms(items); resolve(items); }) .catch((error) => {