Skip to content

Commit

Permalink
chore typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhoaidanh committed Oct 5, 2023
1 parent e681a30 commit 8af43ba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/pages/TrueSightV2/components/TokenOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ export const TokenOverview = ({ data, isLoading }: { data?: IAssetOverview; isLo
isOpen={showShare}
onClose={() => setShowShare(false)}
content={mobileMode => <KyberScoreShareContent token={data} mobileMode={mobileMode} />}
title="Kyberscore"
title="KyberScore"
onShareClick={social =>
mixpanelHandler(MIXPANEL_TYPE.KYBERAI_SHARE_TOKEN_CLICK, {
token_name: data?.symbol?.toUpperCase(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const mapTypeTitle = {
[KyberAIListType.TRENDING_SOON]: t`Trending Soon Tokens`,
[KyberAIListType.TRENDING]: t`Top Trending Tokens`,
[KyberAIListType.FUNDING_RATE]: t`Funding Rates`,
[KyberAIListType.KYBERSWAP_DELTA]: t`Kyberscore Delta`,
[KyberAIListType.KYBERSWAP_DELTA]: t`KyberScore Delta`,
}

export default function TokenAnalysisListShareContent({
Expand Down
4 changes: 2 additions & 2 deletions src/pages/TrueSightV2/components/table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ export const WidgetTable = ({
<Trans>Token</Trans>
</th>
<th>
<Trans>Kyberscore</Trans>
<Trans>KyberScore</Trans>
</th>
<th>
<Trans>Price | 24 Change</Trans>
Expand Down Expand Up @@ -1061,7 +1061,7 @@ export const TokenListInShareModalTable = ({
</th>
{!mobileMode && (
<th>
<Trans>Kyberscore</Trans>
<Trans>KyberScore</Trans>
</th>
)}
</tr>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ const renderByColumnType: Record<
delay={200}
>
<TextDotted>
<Trans>Kyberscore</Trans>
<Trans>KyberScore</Trans>
</TextDotted>
</SimpleTooltip>
<Text as="small" fontSize={'10px'} sx={{ textTransform: 'none' }}>
Expand Down Expand Up @@ -398,7 +398,7 @@ const renderByColumnType: Record<
tableHeader: ({ sortInfo, onChangeSort }) => (
<TableHeaderCell sortable onClick={() => onChangeSort?.(SORT_FIELD.KYBER_SCORE_DELTA)}>
<Row justify="flex-start" gap="4px">
<Trans>Kyberscore Delta</Trans>
<Trans>KyberScore Delta</Trans>
<SortArrow type={SORT_FIELD.KYBER_SCORE_DELTA} sortInfo={sortInfo} />
</Row>
</TableHeaderCell>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ const tokenTypeList: {
},
{
type: KyberAIListType.KYBERSWAP_DELTA,
title: t`Kyberscore Delta`,
title: t`KyberScore Delta`,
icon: 'bearish',
tooltip: theme => (
<span>
Expand Down

0 comments on commit 8af43ba

Please sign in to comment.