Skip to content

Commit

Permalink
Lint/format
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Nov 13, 2024
1 parent 60d0697 commit 0f1e0ea
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>;
};

export const ClientVerifyPage = () => {
Expand Down

0 comments on commit 0f1e0ea

Please sign in to comment.