Skip to content

Commit

Permalink
fix: remove unnecessary generic params
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptodev-2s committed Jul 13, 2023
1 parent cfd1389 commit 3c489e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Views/DetectedTokens/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ interface IgnoredTokensByAddress {
const DetectedTokens = () => {
const navigation = useNavigation();
const sheetRef = useRef<SheetBottomRef>(null);
const detectedTokens = useSelector<any, TokenType[]>(selectDetectedTokens);
const detectedTokens = useSelector(selectDetectedTokens);
const [ignoredTokens, setIgnoredTokens] = useState<IgnoredTokensByAddress>(
{},
);
Expand Down

0 comments on commit 3c489e9

Please sign in to comment.