Skip to content

Commit

Permalink
Fix search
Browse files Browse the repository at this point in the history
  • Loading branch information
vtalos committed Jan 6, 2025
1 parent dea26be commit 2b2d275
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow

data class SearchUiState(
val selectedJobTitle: String = "",
val selectedLocation: String = "",
val selectedExperience: String = "",
val selectedJobTitle: String = "Any",
val selectedLocation: String = "Any",
val selectedExperience: String = "Any",
)

class SearchViewModel : ViewModel() {
Expand Down

0 comments on commit 2b2d275

Please sign in to comment.