Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Fix "Pick some for me" button on android #3102

Merged
merged 1 commit into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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