This is because the error messaged printed to the user  was incorrect.
This commit is contained in:
Thomas Roberts 2021-11-19 12:31:16 +00:00 committed by GitHub
parent bbaa4d8798
commit c35819272d
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ export const mustContain = (
'Returned value must include %1$s, you passed "%2$s"',
'woo-gutenberg-products-block'
),
value,
requiredValue
requiredValue,
value
)
);
}