diff --git a/apps/app/components/Belt/index.js b/apps/app/components/Belt/index.js index d63ee373..d9afe308 100644 --- a/apps/app/components/Belt/index.js +++ b/apps/app/components/Belt/index.js @@ -4,8 +4,14 @@ import { BELT_PT } from "~/lib/belt"; import styles from "./style.module.css"; export default function Belt({ belt }) { + const isWhite = belt === "white"; + return ( - + {!belt ? BELT_PT[""] : BELT_PT[belt]} );