Skip to content

Commit

Permalink
VKT(Frontend): Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoivisto committed Jun 11, 2024
1 parent 398aa5d commit 0e9506c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ export const PublicEnrollmentGrid = ({
{isPhone ? (
<PublicEnrollmentPhoneGrid
isStepValid={isStepValid}
isShiftedFromQueue={isShiftedFromQueue}
isShiftedFromQueue={!!isShiftedFromQueue}
isExamEventDetailsAvailable={isExamEventDetailsAvailable}
isPaymentSumAvailable={isPaymentSumAvailable}
isPaymentSumAvailable={!!isPaymentSumAvailable}
isPreviewStepActive={isPreviewStepActive}
isPreviewPassed={isPreviewPassed}
isEnrollmentToQueue={isEnrollmentToQueue}
Expand All @@ -173,9 +173,9 @@ export const PublicEnrollmentGrid = ({
) : (
<PublicEnrollmentDesktopGrid
isStepValid={isStepValid}
isShiftedFromQueue={isShiftedFromQueue}
isShiftedFromQueue={!!isShiftedFromQueue}
isExamEventDetailsAvailable={isExamEventDetailsAvailable}
isPaymentSumAvailable={isPaymentSumAvailable}
isPaymentSumAvailable={!!isPaymentSumAvailable}
isPreviewStepActive={isPreviewStepActive}
isPreviewPassed={isPreviewPassed}
isEnrollmentToQueue={isEnrollmentToQueue}
Expand Down

0 comments on commit 0e9506c

Please sign in to comment.