From 705b0e8eb33f80b7064c0b8cf2f28031440701de Mon Sep 17 00:00:00 2001 From: Joe Furfaro Date: Tue, 14 Jan 2025 22:50:40 -0800 Subject: [PATCH] updated default event, changed dev api port --- src/EventContext.js | 2 +- webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EventContext.js b/src/EventContext.js index f1d16c6a..fcd7ee91 100644 --- a/src/EventContext.js +++ b/src/EventContext.js @@ -10,7 +10,7 @@ const EventContext = createContext({ export default EventContext; export function EventProvider({ children }) { - const [eventId, setEventId] = useState('45fdbc90-19a1-4a5c-ac69-345afceb5d39'), + const [eventId, setEventId] = useState('0fe92cbb-a22c-4b25-993e-773ca016a5f1'), [event, setEvent] = useState(null); useEffect(() => { diff --git a/webpack.config.js b/webpack.config.js index 509e7ed0..106e9d15 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -126,7 +126,7 @@ module.exports = (env = {}, argv) => { } }), new webpack.DefinePlugin({ - API_HOST: JSON.stringify(devMode ? 'https://localhost:5000' : 'https://api.mustachebash.com'), + API_HOST: JSON.stringify(devMode ? 'https://localhost:8888' : 'https://api.mustachebash.com'), TICKET_LINK_HOST: JSON.stringify(devMode ? 'https://localhost:8081' : 'https://mustachebash.com'), BRAINTREE_HOST: JSON.stringify(devMode ? 'https://sandbox.braintreegateway.com' : 'https://www.braintreegateway.com'), BRAINTREE_MERCHANT_ID: JSON.stringify(devMode ? 'ht835xhgsgwsz2hn' : 't7bcxj3vjz92bxr2'),