fix: correct type casting in onChanged callback in ProductPickerField
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-08 15:33:20 +02:00
parent fc366547c7
commit a5273158e2
@@ -105,7 +105,7 @@ class ProductPickerField extends StatelessWidget {
onChanged?.call(null);
return;
}
onChanged?.call(result as int);
onChanged?.call(result);
}
/// Öppnar produktväljarens bottenark utan att binda den till en specifik widget-instans.