import { createAsyncThunk } from "@reduxjs/toolkit"; import axios from "axios"; import { LOADING_END, LOADING_START } from "../../../lib/redux/slices/appSlice"; export const guildDeleteOutOfProvinceSell = createAsyncThunk( "GUILD_DELETE_OUT_OF_PROVINCE_SELL", async (d, { dispatch }) => { dispatch(LOADING_START()); try { const { data, status } = await axios.delete( `steward_free_sale_bar/0/?key=${d}` ); dispatch(LOADING_END()); return { data, status }; } catch (e) { dispatch(LOADING_END()); return { error: e.response.data.result }; } } );