refactor
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
Scott E. Graves 2025-03-15 22:20:38 -05:00
parent 23de275e11
commit 21af9be9a8

View File

@ -66,10 +66,9 @@ class _AddMountScreenState extends State<AddMountScreen> {
const Text('Provider Type'),
const SizedBox(width: constants.padding),
DropdownButton<String>(
autofocus: true,
value: _mountType,
onChanged: (mountType) {
_handleChange(mountType ?? '');
},
onChanged: (mountType) => _handleChange(mountType ?? ''),
items:
constants.providerTypeList
.map<DropdownMenuItem<String>>((item) {