Currently there is no way of knowing where the error comes from
e.g.
here userError could come from getting the user or updating the user, just by looking at userError one can't tell
const [{ data: currentUser, error: userError }, { update: updateUser }]
= useUser(customerLevelVariables);
Currently there is no way of knowing where the error comes from e.g. here userError could come from getting the user or updating the user, just by looking at userError one can't tell const [{ data: currentUser, error: userError }, { update: updateUser }] = useUser(customerLevelVariables);