Add containsAny filter comparators in rest api (#9595)

- add missing `containsAny` filter comparator to filter multiSelect
fields
- fix app break if object with same name created
- fix flash when clicking on choose plan
### Before


https://github.com/user-attachments/assets/71709912-63e8-40f8-bc52-3ec0a62746bb


### After



https://github.com/user-attachments/assets/93ee02c2-e3d9-4bab-8b6a-62813fd40b2b
This commit is contained in:
martmull
2025-01-14 11:40:02 +01:00
committed by GitHub
parent 5eeee6a7ed
commit f0287d273d
6 changed files with 26 additions and 6 deletions

View File

@ -156,7 +156,7 @@ export const ChooseYourPlan = () => {
handleCheckoutSession();
}
if (billingCheckoutSession.skipPlanPage || isSubmitting) {
if (billingCheckoutSession.skipPlanPage && isSubmitting) {
return <Loader />;
}