September 2022
Intermediate to advanced
410 pages
10h 7m
English
Compiling the file, we get a few errors:
The venue-display file that is kicking off the call to React is not handling a potential undefined value.
The SortController is doing a parseInt with a potentially null value.
The debounce method in SearchController is unhappy and we may just need to restructure that.
The CalendarController has a few cases where we use target.dataset.
The thunk dispatches in App don’t like that they may potentially have nulls.
All the dispatch calls that are using React Thunk are reporting a type error about VenueAction and VenueThunk.
Using other strict options would give us more errors. In particular, I think the “no explicit any” might be a big problem, but I think this should be enough ...