Skip to content

Commit

Permalink
feat: clear
Browse files Browse the repository at this point in the history
  • Loading branch information
HuberTRoy committed Dec 28, 2023
1 parent 6fd4601 commit 90497c7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/hooks/useSortedIndexerDeployments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ export function useSortedIndexerDeployments(indexer: string): AsyncData<Array<Us
description: '',
websiteUrl: '',
codeUrl: '',
type: 'SUBQUERY',
versionDescription: '',
categories: [],
};
Expand Down
2 changes: 1 addition & 1 deletion src/pages/delegator/DoDelegate/DelegateFrom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as React from 'react';
import { useTranslation } from 'react-i18next';
import { BsExclamationCircle } from 'react-icons/bs';
import { useNavigate } from 'react-router';
import TokenTooltip from '@components/TokenTooltip/tokenTooltip';
import TokenTooltip from '@components/TokenTooltip/TokenTooltip';
import { useFetchMetadata } from '@hooks/useFetchMetadata';
import { Typography } from '@subql/components';
import { useGetDelegationQuery, useGetDelegationsLazyQuery } from '@subql/react-hooks';
Expand Down
2 changes: 1 addition & 1 deletion src/pages/indexer/MyPlans/List/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const List: React.FC<Props> = ({ data, onRefresh, title }) => {
return 'inactive';
};
return (
<Tag state={text().includes('inactive') ? 'error' : 'success'} style={{ textTransform: 'uppercase' }}>
<Tag color={text().includes('inactive') ? 'error' : 'success'} style={{ textTransform: 'uppercase' }}>
{text()}
</Tag>
);
Expand Down

0 comments on commit 90497c7

Please sign in to comment.