Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
615 Bytes
import axios from "axios";
import { cartUserId } from "../urls";
import activeUser from "../components/custom_hooks/activeUser";
import jwtToken from "../components/custom_hooks/GetJwtToken";
const gettingItems = () => {
return async function (dispatch) {
try {
const { id } = await activeUser();
let url = cartUserId(id);
const res = await axios.get(url, {
headers: {
token: jwtToken(),
},
});
dispatch({ type: "GETITEM", res });
} catch (e) {
// console.log(e.response);
dispatch({
type: "NOTFOUNDITEM",
msg: e.message,
});
}
};
};
export { gettingItems };