move away from ehemer to resolve recursive loop.

This commit is contained in:
Jordan Hewitt
2024-06-28 14:53:48 -07:00
parent 3d03f1d9e8
commit 93c0c25eb5
12 changed files with 309 additions and 160 deletions

View File

@ -42,7 +42,7 @@ const productsState = createSlice({
});
export const selectProducts = (state : RootState) => {
return state.products
return state.products;
}