Skip to content

Commit

Permalink
correct event attendee index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosSia committed Apr 14, 2021
1 parent bc443ef commit b952875
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/webapp/app/entities/event-attendee/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@ import { Switch } from 'react-router-dom';
import ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';

import EventAttendee from './event-attendee';
import EventAttendeeDetail from './event-attendee-detail';
import EventAttendeeUpdate from './event-attendee-create';

const Routes = ({ match }) => (
<>
<Switch>
<ErrorBoundaryRoute exact path={`${match.url}/event/:eventId/new`} component={EventAttendeeUpdate} />
<ErrorBoundaryRoute exact path={`${match.url}/:id/edit`} component={EventAttendeeUpdate} />
<ErrorBoundaryRoute exact path={`${match.url}/:id`} component={EventAttendeeDetail} />
<ErrorBoundaryRoute exact path={`${match.url}/event/:eventId`} component={EventAttendee} />
</Switch>
</>
Expand Down

0 comments on commit b952875

Please sign in to comment.