Skip to content

Commit

Permalink
Merge pull request #356 from Itheum/test
Browse files Browse the repository at this point in the history
Hotfix test -> stg
  • Loading branch information
damienen authored Apr 5, 2024
2 parents 18a5fe2 + 7988028 commit 80f4da3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/AppMarketplace/GetBitz/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@ export const GetBitz = () => {
// Render a countdown
return (
<span>
{props.hours > 0 ? (props.hours + props.hours === 1 ? " Hour " : " Hours ") : ""}
{props.minutes > 0 ? props.minutes + " Min : " : ""} {props.seconds} Sec
{props.hours > 0 ? <>{`${props.hours} ${props.hours === 1 ? " Hour " : " Hours "}`}</> : ""}
{props.minutes > 0 ? props.minutes + " Min " : ""} {props.seconds} Sec
</span>
);
}
Expand All @@ -443,9 +443,9 @@ export const GetBitz = () => {
return <> </>;
} else {
return (
<div className="absolute z-10 w-full h-full rounded-[3rem] bg-black/90 ">
<div className="absolute z-5 w-full h-full rounded-[3rem] bg-black/90 ">
<div className="flex w-full h-full items-center justify-center">
<div className="text-3xl md:text-5xl flex flex-col items-center justify-center ">
<div className="text-3xl md:text-5xl flex flex-col items-center justify-center text-white ">
<p className="my-4 text-xl md:text-3xl "> You can play again in: </p>{" "}
{props.hours > 0 ? <>{`${props.hours} ${props.hours === 1 ? " Hour " : " Hours "}`}</> : ""}
{props.minutes > 0 ? props.minutes + " Min " : ""} {props.seconds} Sec
Expand Down

0 comments on commit 80f4da3

Please sign in to comment.