fixed semicolon error

This commit is contained in:
Cappy Popp 2021-01-06 14:55:07 -05:00
parent 18a5425588
commit d95c448d42

View File

@ -269,7 +269,7 @@
}); });
hiddenInputCreator('state', function(newValue){ hiddenInputCreator('state', function(newValue){
mktoForm.setValues({ mktoForm.setValues({
'State': newValue.toUpperCase(); 'State': newValue.toUpperCase()
}); });
}); });