Commit 1ef3e36e by Arjun Jhukal

minor change

parent e2043886
...@@ -19,7 +19,7 @@ export default function UserCoinCard() { ...@@ -19,7 +19,7 @@ export default function UserCoinCard() {
}} className="flex justify-start items-center gap-1 py-2 pl-4 pr-8"> }} className="flex justify-start items-center gap-1 py-2 pl-4 pr-8">
<GoldCoinIcon /> <GoldCoinIcon />
<div className="coins"> <div className="coins">
<strong className="text-[12px] leading-4 font-[600] text-[#FBA027] block">{data?.data[0]?.value || 0}</strong> <strong className="text-[12px] leading-4 font-[600] text-[#FBA027] block">{data?.data[1]?.value || 0}</strong>
<span className="text-[9px] mt-[-2px] block">Gold Coins</span> <span className="text-[9px] mt-[-2px] block">Gold Coins</span>
</div> </div>
</Box> </Box>
...@@ -35,8 +35,8 @@ export default function UserCoinCard() { ...@@ -35,8 +35,8 @@ export default function UserCoinCard() {
}} className="flex justify-start items-center gap-1 py-2 pl-4 pr-8"> }} className="flex justify-start items-center gap-1 py-2 pl-4 pr-8">
<SilverCoinIcon /> <SilverCoinIcon />
<div className="coins"> <div className="coins">
<strong className="text-[12px] leading-4 font-[600] text-[#93E0D8] block">{data?.data[1]?.value || 0}</strong> <strong className="text-[12px] leading-4 font-[600] text-[#93E0D8] block">{data?.data[0]?.value || 0}</strong>
<span className="text-[9px] mt-[-2px] block">Gold Coins</span> <span className="text-[9px] mt-[-2px] block">Silver Coins</span>
</div> </div>
</Box> </Box>
</Box > </Box >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment