Skip to content

Commit

Permalink
Merge pull request #772 from gouravmpk/add-rss
Browse files Browse the repository at this point in the history
Add rss
  • Loading branch information
Rassl authored Jan 17, 2024
2 parents 3aaf686 + aeb9481 commit 6d2ae88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/AddContentModal/SourceTypeStep/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FC } from 'react'
import styled from 'styled-components'
import { Flex } from '~/components/common/Flex'
import { Text } from '~/components/common/Text'
import { TWITTER_HANDLE, YOUTUBE_CHANNEL } from '~/constants'
import { TWITTER_HANDLE, YOUTUBE_CHANNEL , RSS} from '~/constants'
import { colors } from '~/utils'
import { extractNameFromLink } from '../utils'

Expand All @@ -17,6 +17,7 @@ type Props = {
const CONTENT_TYPE_MAPPING: Record<string, string> = {
[TWITTER_HANDLE]: 'Twitter handle',
[YOUTUBE_CHANNEL]: 'Youtube channel',
[RSS]: 'RSS Feed'
}

export const SourceTypeStep: FC<Props> = ({ onNextStep, onPrevStep, type, value }) => (
Expand Down

0 comments on commit 6d2ae88

Please sign in to comment.