refactor(storeContext.tsx): update setHasStore to use "enabled" property from response instead of "has_store" for better readability and consistency
refactor(API/index.ts): update checkHasStore API endpoint URL to use BASE_URL_API constant for better maintainability and consistency
This commit is contained in:
parent
adf849a6fb
commit
bfff5d305a
2 changed files with 2 additions and 4 deletions
|
|
@ -18,7 +18,7 @@ export function StoreProvider({ children }) {
|
|||
const [hasStore, setHasStore] = useState(false);
|
||||
|
||||
checkHasStore().then((res) => {
|
||||
setHasStore(res[0].has_store);
|
||||
setHasStore(res["enabled"]);
|
||||
});
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -679,9 +679,7 @@ export async function searchComponent(
|
|||
|
||||
export async function checkHasStore() {
|
||||
try {
|
||||
const res = await api.get(
|
||||
`https://65384701a543859d1bb15e63.mockapi.io/Store`
|
||||
);
|
||||
const res = await api.get(`${BASE_URL_API}store`);
|
||||
if (res.status === 200) {
|
||||
return res.data;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue