diff --git a/website/src/pages/Poh.tsx b/website/src/pages/Poh.tsx index e6813f8c..a88bcf52 100644 --- a/website/src/pages/Poh.tsx +++ b/website/src/pages/Poh.tsx @@ -5,6 +5,8 @@ import { ConnectKitButton } from "connectkit"; import axios from "axios"; import { useAccount } from "wagmi"; import { Link } from "react-router-dom"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faCheck, faXmark } from "@fortawesome/free-solid-svg-icons"; export type PohProps = { title: string; @@ -76,8 +78,12 @@ export const Poh: FunctionComponent = ({ title }) => { ) : ( <>{displayName(poh.issuerName)} + )}{" "} + {poh.validated ? ( + + ) : ( + )} - {poh.validated ? ` ✅` : ` ❌`} ))} @@ -104,7 +110,14 @@ export const Poh: FunctionComponent = ({ title }) => {
-

Global POH status {isPoh ? ` ✅` : ` ❌`}

+

+ Global POH status{" "} + {isPoh ? ( + + ) : ( + + )} +