Wasp 0.19 Upgrade issues

So I've gone through a somehow cumbersome process upgrading, although the issues are likely not directly related to wasp, but to the way that the upgrade happened. I successfully upgraded from 17 to 18, and then attempted the process from 18 to 19.1. The issue I have is when I'm fully upgraded (meaning I went through all the instructions completely), stuff in my app started to break, specifically a calendar picker in a popover from shadcn

              <Popover open={openPopover} onOpenChange={setOpenPopover}>
                <PopoverTrigger asChild>
                  <Button variant='outline' id='date' className='w-48 justify-between font-normal bg-accent'>
                    {formData.date ? formData.date.toLocaleDateString() : 'Select date'}
                    <ChevronDownIcon />
                  </Button>
                </PopoverTrigger>
                <PopoverContent className='w-auto overflow-hidden p-0' align='start'>
                  <Calendar
                    mode='single'
                    selected={formData.date}
                    disabled={date => date > new Date() || date < new Date('1900-01-01')}
                    month={month}
                    onMonthChange={setMonth}
                    captionLayout='dropdown'
                    onSelect={date => {
                      if (date) {
                        setMonth(date)
                        setAge(getAge(date.toISOString()))
                        setFieldValue('date', date)
                      }
                      setOpenPopover(false)
                    }}
                  />
                </PopoverContent>
              </Popover>
Was this page helpful?