Skip to content

Commit bef4fc0

Browse files
authored
Merge pull request #464 from hackjunction/dev
Auth0 tenant documentation & bug fixes #460 #409
2 parents 7fe400a + b6b1717 commit bef4fc0

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

frontend/src/pages/_events/slug/context.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ export const EventDetailProvider = ({ children }) => {
210210
const registration = registrationData?.myRegistration
211211
const isRegistrationOpen =
212212
event?._eventStatus === EventStatuses.REGISTRATION_OPEN.id
213-
console.log('regidata', registrationData)
214213
return (
215214
<EventDetailContext.Provider
216215
value={{

frontend/src/pages/_events/slug/default/EventButtons/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import React from 'react'
33
import { useDispatch, useSelector } from 'react-redux'
44
import { push } from 'connected-react-router'
55
import { useRouteMatch } from 'react-router'
6-
import moment from 'moment-timezone'
76
import { EventStatuses } from '@hackjunction/shared'
87
import { Typography, Grid } from '@material-ui/core'
98

@@ -16,7 +15,6 @@ export default ({ event, registration }) => {
1615
const dispatch = useDispatch()
1716
const match = useRouteMatch()
1817
const isAuthenticated = useSelector(AuthSelectors.isAuthenticated)
19-
console.log('regi', registration)
2018
const hasRegistration = registration
2119
? registration.status != 'incomplete'
2220
: false

frontend/src/pages/_index/EventsGrid/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default ({ events, loading = false, title }) => {
3636
dispatch(push('/events/' + event.slug))
3737
}
3838
>
39-
{t('Register_now_')}
39+
{t('See_more_')}
4040
</Button>
4141
),
4242
canApply && !event.galleryOpen && (

0 commit comments

Comments
 (0)