attempt to fix a prod-only tooltip bug 🤔
My current guess is that maybe showDelay={false} is infinite delay after prod compilation? Not sure why but it's my best guess!
This commit is contained in:
parent
785d119324
commit
6b616d917d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ function StartOutfitForm() {
|
|||
// HACK: I only want the tooltip to appear when invalid... but the
|
||||
// API doesn't really give us that option while also retaining
|
||||
// the same <Button> instance. Instead, we set the max delay ><
|
||||
showDelay={isValid && 2147483647}
|
||||
showDelay={isValid ? 2147483647 : 0}
|
||||
>
|
||||
<Button type="submit" variantColor="green" disabled={!isValid}>
|
||||
Start
|
||||
|
|
Loading…
Reference in a new issue