fix: adding bit validation to is deleted

This commit is contained in:
Chubby Granny Chaser
2025-01-22 09:43:28 +00:00
parent f5532fa26f
commit 4c5c602775
8 changed files with 23 additions and 23 deletions

View File

@@ -10,7 +10,7 @@ const initialState: GameRunningState = {
};
export const gameRunningSlice = createSlice({
name: "running-game",
name: "game-running",
initialState,
reducers: {
setGameRunning: (state, action: PayloadAction<GameRunning | null>) => {

View File

@@ -4,7 +4,7 @@ export * from "./download-slice";
export * from "./window-slice";
export * from "./toast-slice";
export * from "./user-details-slice";
export * from "./running-game-slice";
export * from "./game-running.slice";
export * from "./subscription-slice";
export * from "./repacks-slice";
export * from "./catalogue-search";

View File

@@ -71,8 +71,8 @@ export function DownloadGroup({
if (download.fileSize) return formatBytes(download.fileSize);
if (download.fileSize && isGameDownloading)
return formatBytes(download?.fileSize);
if (lastPacket?.download.fileSize && isGameDownloading)
return formatBytes(lastPacket.download.fileSize);
return "N/A";
};
@@ -90,8 +90,6 @@ export function DownloadGroup({
const getGameInfo = (game: LibraryGame) => {
const download = game.download!;
console.log(game);
const isGameDownloading = lastPacket?.gameId === game.id;
const finalDownloadSize = getFinalDownloadSize(game);
const seedingStatus = seedingMap.get(game.id);