diff --git a/package.json b/package.json index 96b454b..3576ac4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "groovebrew-mockup", "version": "0.1.0", "private": true, - "homepage": "https://test.kedaimaster.com", + "homepage": "https://kedaimaster.com", "dependencies": { "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", diff --git a/src/components/MusicPlayer.css b/src/components/MusicPlayer.css index f68f3e9..6719d0a 100644 --- a/src/components/MusicPlayer.css +++ b/src/components/MusicPlayer.css @@ -123,7 +123,7 @@ -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ position: relative; - max-height: 400px; + max-height: 462px; /* Adjust the max-height as needed */ overflow-y: auto; /* Allow vertical scrolling */ diff --git a/src/components/MusicPlayer.js b/src/components/MusicPlayer.js index b92e59d..754932f 100644 --- a/src/components/MusicPlayer.js +++ b/src/components/MusicPlayer.js @@ -108,7 +108,7 @@ export function MusicPlayer({ socket, shopId, user, shopOwnerId, isSpotifyNeedLo // setSubtitleColor("white"); // setSubtitleBG("black"); // } - const proxiedUrl = `https://test.api.kedaimaster.com/image?url=${encodeURIComponent(modifyUrl(imageUrl))}`; // Use your proxy to fetch the image + const proxiedUrl = `https://api.kedaimaster.com/image?url=${encodeURIComponent(modifyUrl(imageUrl))}`; // Use your proxy to fetch the image setBackgroundImage(proxiedUrl); } catch (error) { @@ -413,6 +413,11 @@ export function MusicPlayer({ socket, shopId, user, shopOwnerId, isSpotifyNeedLo }, 1000); // 1 second timeout (same as the CSS transition duration) }; + const handleFocus = () => { + console.log(user) + if(user.length == 0) setModal("message", { captMessage: 'Silahkan lakukan transaksi' }, null, null); + }; + return (
diff --git a/src/config.js b/src/config.js index ff08a5e..967c5ce 100644 --- a/src/config.js +++ b/src/config.js @@ -1,5 +1,5 @@ // src/config.js -const API_BASE_URL = 'https://test.api.kedaimaster.com'; +const API_BASE_URL = 'https://api.kedaimaster.com'; export default API_BASE_URL; diff --git a/src/pages/CreateCoupon.js b/src/pages/CreateCoupon.js index 974c921..0ed594a 100644 --- a/src/pages/CreateCoupon.js +++ b/src/pages/CreateCoupon.js @@ -46,7 +46,7 @@ const CreateCouponPage = () => { let encodedCouponCode = encodeURIComponent(encryptedCouponCode); // Construct the URL with the encoded coupon code as a query parameter - const urlWithCoupon = `https://test.coupon.kedaimaster.com/coupon?c=${encodedCouponCode}`; + const urlWithCoupon = `https://coupon.kedaimaster.com/coupon?c=${encodedCouponCode}`; // Optionally, set the URL to use with the coupon setCouponUrl(urlWithCoupon); diff --git a/src/pages/Reports.js b/src/pages/Reports.js index 20292f2..8fba232 100644 --- a/src/pages/Reports.js +++ b/src/pages/Reports.js @@ -444,7 +444,6 @@ const App = ({ forCafe = true, cafeId = -1, // Add a 2-second delay before proceeding await delay(2000); - handleClose(); setModalStatus(null); // Reset status window.location.reload(); // Reload the page return; @@ -457,7 +456,6 @@ const App = ({ forCafe = true, cafeId = -1, // Add a 2-second delay before proceeding await delay(2000); - handleClose(); setModalStatus(null); // Reset status window.location.reload(); // Reload the page }