3
0
mirror of https://github.com/Qortal/q-shop.git synced 2025-01-30 14:52:20 +00:00

Set production identifiers

This commit is contained in:
Justin Ferrari 2024-01-13 09:26:38 -05:00
parent 615217fc33
commit 034371eb80
2 changed files with 13 additions and 13 deletions

View File

@ -1,18 +1,18 @@
// TESTING
export const STORE_BASE = "test-q-store-general";
export const DATA_CONTAINER_BASE = "test-datacontainer";
export const CATALOGUE_BASE = "test-q-store-catalogue";
export const ORDER_BASE = "test-q-store-order";
export const REVIEW_BASE = "test-q-store-review";
export const PRODUCT_BASE = "test-q-store-product";
// export const STORE_BASE = "test-q-store-general";
// export const DATA_CONTAINER_BASE = "test-datacontainer";
// export const CATALOGUE_BASE = "test-q-store-catalogue";
// export const ORDER_BASE = "test-q-store-order";
// export const REVIEW_BASE = "test-q-store-review";
// export const PRODUCT_BASE = "test-q-store-product";
// PRODUCTION
// export const STORE_BASE = "q-store-general";
// export const DATA_CONTAINER_BASE = "datacontainer";
// export const CATALOGUE_BASE = "q-store-catalogue";
// export const ORDER_BASE = "q-store-order";
// export const REVIEW_BASE = "q-store-review";
// export const PRODUCT_BASE = "q-store-product";
export const STORE_BASE = "q-store-general";
export const DATA_CONTAINER_BASE = "datacontainer";
export const CATALOGUE_BASE = "q-store-catalogue";
export const ORDER_BASE = "q-store-order";
export const REVIEW_BASE = "q-store-review";
export const PRODUCT_BASE = "q-store-product";

View File

@ -158,7 +158,7 @@ export const StoreList = () => {
{filteredStores.length > 0 &&
filteredStores
// Get rid of the Bester shop (test shop)
// .filter((store: Store) => store.owner !== "Bester")
.filter((store: Store) => store.owner !== "Bester")
.map((store: Store) => {
let storeItem = store;
let hasHash = false;