# Select Empty String Error - Fixed ✅
## Issue
Radix UI Select component doesn't allow `` with empty strings because empty strings are reserved for clearing the selection.
Error message:
```
A must have a value prop that is not an empty string.
This is because the Select value can be set to an empty string to clear
the selection and show the placeholder.
```
## Solution
Replace all empty string values with a special value `'none'` and handle the conversion in the Select component.
## Files Modified
- `/components/field/SoilBaseData.tsx`
## Changes Made
### 1. Add Dialog - Main Device Selection (Line ~1133)
**Before:**
```tsx