weareinreach / InReach

Avoid use of == and != JS-0050
Anti-pattern
Minor
1 occurrence in this check
Expected '===' and instead saw '=='
182	const [stateInUS, setStateInUS] = useState<string>('')
183
184	useEffect(() => {
185		if (searchState.searchTerm?.slice(-3) == 'USA') {186			setStateInUS(searchState.searchTerm?.split(', ')[1] || '')
187		} else {
188			setStateInUS('')