Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/EventContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
Loading