From 955eaaa8aaf6101345f6d2ca6d5fd33242ba03e5 Mon Sep 17 00:00:00 2001
From: kingsleydon <10992364+kingsleydon@users.noreply.github.com>
Date: Sun, 8 Oct 2023 22:09:51 +0800
Subject: [PATCH] feat(app): low quality icon
---
apps/app/components/BasePool/Identity.tsx | 7 +++++++
.../subbridge/components/BridgeBody/LargeAmountWarning.tsx | 2 +-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/apps/app/components/BasePool/Identity.tsx b/apps/app/components/BasePool/Identity.tsx
index 1e42698d..00f4ef91 100644
--- a/apps/app/components/BasePool/Identity.tsx
+++ b/apps/app/components/BasePool/Identity.tsx
@@ -1,5 +1,6 @@
import {type Account} from '@/lib/subsquidQuery'
import {chainAtom} from '@/store/common'
+import ErrorOutline from '@mui/icons-material/ErrorOutline'
import RemoveCircleOutline from '@mui/icons-material/RemoveCircleOutline'
import VerifiedOutlined from '@mui/icons-material/VerifiedOutlined'
import {alpha, Link, Stack, Tooltip, Typography, useTheme} from '@mui/material'
@@ -17,6 +18,7 @@ const Identity: FC<
const verified =
identityLevel === 'KnownGood' || identityLevel === 'Reasonable'
+ const lowQuality = identityLevel === 'LowQuality'
const link = (
+ ) : lowQuality ? (
+
) : (
= ({sx, ...props}) => {
Please use{' '}
the old version