Skip to content

Commit

Permalink
remove mock
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejaco committed Nov 11, 2024
1 parent a325cea commit 52754ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devcon-app/src/context/app-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export const AppContext = (props: AppContextProps) => {
// Sync current time periodically to keep time related functionality up to date
useEffect(() => {
// const mockedTime = moment.utc('2024-10-23T19:00:00Z').utcOffset(7)
const mockedTime = moment.utc('2024-11-14T05:39:00Z').add(7, 'hours') // First day devcon
// const mockedTime = moment.utc('2024-11-14T05:39:00Z').add(7, 'hours') // First day devcon
// // const mockedTime = moment.utc('2024-11-13T09:30:00Z') // Second day devcon
// // const mockedTime = moment.utc('2024-11-14T08:00:00Z') // Third day devcon
// // const mockedTime = moment.utc('2024-11-15T08:00:00Z') // Fourth day devcon
setCurrentTime(mockedTime)
// setCurrentTime(mockedTime)

return
// return

const clear = setInterval(() => {
setCurrentTime(moment.utc().add(7, 'hours'))
Expand Down

0 comments on commit 52754ae

Please sign in to comment.