Fantastic Bugs and How to Fix Them
Unfortunately, I don't have all the answers yet. But writing some past solutions down for posterity might be nice.
- Components aren't filling in the gaps. Solution: h-full, w-full on everything.
- Error: Object Date is... Solution: Format it into a string. Make sure all instances are formatted.
- My pages are slow to load. Solution: cache your queries.
- My component with a variable in the constructor isn't changing at runtime. Solution: use a hook. Use a store. Create a new instance of it per big state change. If it's in the constructor, it kinda can't change in the usual ways.