Fix attributeValueDelete mutation error - required first/last value (#1665) (#1679)

This commit is contained in:
Michał Droń 2021-12-14 10:48:12 +01:00 committed by GitHub
parent 147d8c89cb
commit fc2aed4725
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -307,7 +307,8 @@ export const handleDeleteMultipleAttributeValues = async (
if (fileValueUnused) { if (fileValueUnused) {
return deleteAttributeValue({ return deleteAttributeValue({
id: existingAttribute.values[0].id id: existingAttribute.values[0].id,
firstValues: 20
}); });
} }
}) })