Skip to content

Commit

Permalink
1076: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
f1sh1918 committed Aug 21, 2023
1 parent 95718ef commit 4510f4b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions administration/src/bp-modules/cards/AddCardForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,7 @@ const CreateCardForm = ({ cardBlueprint, onRemove, onUpdate }: CreateCardsFormPr
type='date'
required
size='small'
error={
cardBlueprint.expirationDate
? hasCardExpirationError(cardBlueprint.expirationDate)
: true
}
error={cardBlueprint.expirationDate ? hasCardExpirationError(cardBlueprint.expirationDate) : true}
value={cardBlueprint.expirationDate ? cardBlueprint.expirationDate.toString() : null}
sx={{ '& input[value=""]:not(:focus)': { color: 'transparent' }, '& fieldset': { borderRadius: 0 } }}
inputProps={{
Expand Down

0 comments on commit 4510f4b

Please sign in to comment.