Skip to content

Commit

Permalink
Resolved scanner not opening
Browse files Browse the repository at this point in the history
  • Loading branch information
subru-37 committed Oct 8, 2024
1 parent 823b2aa commit f4e25db
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default function ParticipantsCheckIn() {
return (
<DashboardLayout
pageTitle="Participants Check-In"
previousPage={`/organizations/${orgId}/events/${eventId}/participants`}
previousPage={`/${orgId}/events/${eventId}/participants`}
headerButton={
<>
<Flex flexDirection="column" gap={4}>
Expand All @@ -76,7 +76,7 @@ export default function ParticipantsCheckIn() {
<Button
onClick={() => {
router.push(
`/organizations/${orgId}/events/${eventId}/participants/check-in/in/scanner`,
`/${orgId}/events/${eventId}/participants/check-in/in/scanner`,
);
}}
isLoading={loading}
Expand All @@ -96,7 +96,7 @@ export default function ParticipantsCheckIn() {
<Button
onClick={() => {
router.push(
`/organizations/${orgId}/events/${eventId}/participants/check-in/out/scanner`,
`/${orgId}/events/${eventId}/participants/check-in/out/scanner`,
);
}}
isLoading={loading}
Expand Down

0 comments on commit f4e25db

Please sign in to comment.