fix(SW-1043): added input required messages

This commit is contained in:
Tobias Johansson
2024-12-03 15:49:36 +01:00
parent b58c1adb46
commit 15552a4cb6

View File

@@ -50,7 +50,7 @@ export default function CountrySelect({
})
function handleChange(country: Key) {
setValue(name, country)
setValue(name, country ?? "")
}
const selectCountryLabel = intl.formatMessage({ id: "Select a country" })