From b08af2e4c06bd9a0c8adabb6aeb8669c0bbf114b Mon Sep 17 00:00:00 2001 From: MahtabBukhari Date: Fri, 25 Oct 2024 16:09:57 +0500 Subject: [PATCH] fix(source-table): added github repository to source table --- src/components/SourcesTableModal/SourcesView/constants.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/SourcesTableModal/SourcesView/constants.ts b/src/components/SourcesTableModal/SourcesView/constants.ts index 81264f19d..6657b4911 100644 --- a/src/components/SourcesTableModal/SourcesView/constants.ts +++ b/src/components/SourcesTableModal/SourcesView/constants.ts @@ -1,4 +1,4 @@ -import { RSS, TWITTER_HANDLE, YOUTUBE_CHANNEL } from '~/constants' +import { GITHUB_REPOSITORY, RSS, TWITTER_HANDLE, YOUTUBE_CHANNEL } from '~/constants' import { ISourceMap } from './types' import styled from 'styled-components' import { IconButton } from '@mui/material' @@ -7,6 +7,7 @@ export const sourcesMapper: ISourceMap = { [RSS]: 'RSS link', [TWITTER_HANDLE]: 'Twitter Handle', [YOUTUBE_CHANNEL]: 'Youtube channel', + [GITHUB_REPOSITORY]: 'Github Repository', } export const SOURCE_TABLE = 'Sources Table'