If I log in then relaunch the app so the RevenueCat SDK initializes with the appUserId populated, the paywalls launch perfectly.
If I log out, paywalls are displayed. If I then log back into the same appUserId (or any other), paywalls aren’t displayed.
If I launch the app logged out, paywalls are displayed. If I then log in (to the same appUserId), paywalls aren’t displayed.
The call to `offerings.currentOffering(forPlacement: “placement_id”)` does return an offering in all cases.
The following is executed in all cases, with a non-nil offering:
```
Group {
PaywallView(offering: offering, displayCloseButton: true)
}
.onRestoreCompleted { customerInfo in ...
```
Any ideas what might be preventing the paywalls from rendering?
