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

Commit

Permalink
Finalize mobile-upload feature flag (#2322)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers authored and sliptype committed Nov 29, 2022
1 parent 3093b86 commit e004764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export enum FeatureFlags {
OFFLINE_MODE_ENABLED = 'offline_mode_enabled',
PREMIUM_CONTENT_ENABLED = 'premium_content_enabled',
AUTO_SUBSCRIBE_ON_FOLLOW = 'auto_subscribe_on_follow',
MOBILE_UPLOAD = 'mobile_upload',
MOBILE_UPLOAD = 'mobile_upload_final',
STREAM_MP3 = 'stream_mp3',
READ_ARTIST_PICK_FROM_DISCOVERY = 'read_artist_pick_from_discovery',
SHARE_TO_STORY = 'share_to_story',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ export const PickArtworkField = () => {
launchSelectImageActionSheet(handleImageSelected, secondary)
}, [secondary, setValue])

const source = useMemo(
() => ({ uri: trackArtworkUrl ?? ' ' }),
[trackArtworkUrl]
)
const source = useMemo(() => ({ uri: trackArtworkUrl }), [trackArtworkUrl])

return (
<View style={styles.root}>
Expand Down

0 comments on commit e004764

Please sign in to comment.