Skip to content

Commit

Permalink
Fix logic for verify status page
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Nov 13, 2024
1 parent 6316ba5 commit 60d0697
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { EXTERNAL_LINK_PROPS } from "components/link";
import useIsUserGeoblocked from "@hooks/use-is-user-geoblocked";

const checkmarkOrX = (bool: boolean) => {
return <span className="text-lg">{bool ? "✅" : ""} </span>;
return <span className="text-lg">{bool ? "❌": ""} </span>;

Check failure on line 14 in src/typescript/frontend/src/components/pages/verify_status/VerifyStatusPage.tsx

View workflow job for this annotation

GitHub Actions / pre-commit

Insert `·`
};

export const ClientVerifyPage = () => {
Expand Down

0 comments on commit 60d0697

Please sign in to comment.