Oops, fix bug in alt styles query loading state

Oh right, React Query's API is slightly different, fixed! (Previously,
this would cause the PosePicker to show before all the data was ready,
so alt styles would sometimes pop in after the popover was already
open.)
This commit is contained in:
Emi Matchu 2024-01-29 09:10:26 -08:00
parent 8f934e83b8
commit bdfa3aad0b

View file

@ -81,7 +81,7 @@ function PosePicker({
const { isSupportUser } = useSupport();
const toast = useToast();
const loading = posesQuery.loading || altStylesQuery.loading;
const loading = posesQuery.loading || altStylesQuery.isLoading;
const error = posesQuery.error ?? altStylesQuery.error;
const poseInfos = posesQuery.poseInfos;
const altStyles = altStylesQuery.data ?? [];