Skip to content

Commit

Permalink
Fix "Pick some for me" button on android (#3102)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptype authored Mar 27, 2023
1 parent 6e9c464 commit 8191694
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/mobile/src/components/core/TextButton.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import type { ComponentType } from 'react'
import { useState, useCallback } from 'react'

import { TouchableOpacity } from 'react-native'
import type {
ButtonProps,
TextStyle,
TouchableOpacityProps,
ViewStyle
} from 'react-native'
import { TouchableOpacity } from 'react-native-gesture-handler'
import type { GenericTouchableProps } from 'react-native-gesture-handler/lib/typescript/components/touchables/GenericTouchable'
import type { SvgProps } from 'react-native-svg'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export const PickArtistsForMeButton = () => {
const dispatch = useDispatch()

// The autoselect or 'pick for me'
// Selects the first three aritsts in the current category along with 2 additinal
// random artist from the top 10
// Selects the first three artists in the current category along with 2 additional
// random artists from the top 10
const handlePress = useCallback(() => {
const selectedIds = new Set(followedArtistIds)
const unselectedIds = suggestedArtistIds.filter(
Expand Down

0 comments on commit 8191694

Please sign in to comment.