Skip to content

Commit

Permalink
Fix text on pending view
Browse files Browse the repository at this point in the history
  • Loading branch information
VickyStash committed Oct 11, 2024
1 parent 89ebbf7 commit f835a60
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';
import EmptyStateComponent from '@components/EmptyStateComponent';
import * as Illustrations from '@components/Icon/Illustrations';
import TableListItemSkeleton from '@components/Skeletons/TableRowSkeleton';
import Text from '@components/Text';
import TextLink from '@components/TextLink';
import useLocalize from '@hooks/useLocalize';
import useThemeStyles from '@hooks/useThemeStyles';
Expand All @@ -14,10 +15,10 @@ function WorkspaceCompanyCardsFeedPendingPage() {
const styles = useThemeStyles();

const subtitle = (
<>
<Text>
{translate('workspace.moreFeatures.companyCards.pendingFeedDescription')}
<TextLink onPress={() => ReportInstance.navigateToConciergeChat()}> {CONST?.CONCIERGE_CHAT_NAME}</TextLink>
</>
</Text>
);

return (
Expand Down

0 comments on commit f835a60

Please sign in to comment.