feat: migrating repacks to a worker

This commit is contained in:
Chubby Granny Chaser
2024-06-03 14:35:17 +01:00
parent 5a85033486
commit 485ee11449

View File

@@ -4,7 +4,7 @@ import type { PayloadAction } from "@reduxjs/toolkit";
import type { Game } from "@types";
export interface LibraryState {
value: Game[];
value: Omit<Game, "repacks">[];
}
const initialState: LibraryState = {