Skip to content

Commit

Permalink
chore: in app copy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSage committed Dec 15, 2023
1 parent 2e084f6 commit 6158f85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/screens/ExploreModels/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const ExploreModelsScreen = () => {
const [searchValue, setsearchValue] = useState('')
const [tabActive, setTabActive] = useState('Model')
const { downloadedModels } = useGetDownloadedModels()
const [sortSelected, setSortSelected] = useState('All Model')
const sortMenu = ['All Model', 'Recommended', 'Downloaded']
const [sortSelected, setSortSelected] = useState('All Models')
const sortMenu = ['All Models', 'Recommended', 'Downloaded']

const filteredModels = models.filter((x) => {
if (sortSelected === 'Downloaded') {
Expand Down

0 comments on commit 6158f85

Please sign in to comment.