Skip to content

Commit

Permalink
build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mateodaza committed Oct 1, 2024
1 parent 3af9de8 commit db0cc6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export const QFDonorEligibilityCard = () => {
size={10}
/>
) : (
(passportScore ?? '--')
passportScore ?? '--'

Check failure on line 201 in src/components/views/userProfile/QFDonorEligibilityCard.tsx

View workflow job for this annotation

GitHub Actions / build

Replace `passportScore·??·'--'` with `(passportScore·??·'--')`
)}
</ScoreBox>
</ScoreCard>
Expand Down
4 changes: 1 addition & 3 deletions src/components/views/verification/Milestones.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@ export default function Milestones() {
id: 'label.select_a_date',
})}
disabled={!isDraft}
hasError={
!!errors?.foundationDate?.message ?? false
}
hasError={!!errors?.foundationDate?.message}
/>
)}
/>
Expand Down

0 comments on commit db0cc6f

Please sign in to comment.