all repos — caroster @ 7502e8755df5c2e61620cad01aefc5ed3844c5e6

[Octree] Group carpool to your event https://caroster.io

fix: 🐛 Fix App crash when editing event without address
Simon Mulquin simon@octree.ch
Fri, 04 Mar 2022 13:34:45 +0000
commit

7502e8755df5c2e61620cad01aefc5ed3844c5e6

parent

8aa457368c11cb22d47eb7d30d22adec0e68f32d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M frontend/containers/EventDetails/index.jsfrontend/containers/EventDetails/index.js

@@ -72,7 +72,7 @@ fullWidth

multiline rowsMax={4} inputProps={{maxLength: 250}} - helperText={`${event.address.length}/250`} + helperText={`${event.address?.length ?? 0}/250`} defaultValue={event.address} value={event.address} onChange={e => setEventUpdate({address: e.target.value})}