Skip to content

Commit

Permalink
Merge pull request #1372 from galacticcouncil/rococo
Browse files Browse the repository at this point in the history
Rococo => prod
  • Loading branch information
vkulinich-cl authored Jun 5, 2024
2 parents 9e47b08 + c54448f commit 6b97f48
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const StakingValue = ({
)}
</div>
{typeof value === "string" ? (
<Text fs={[19]} color="white" font="GeistMono">
<Text fs={[19]} color="white">
{value}
</Text>
) : (
Expand Down Expand Up @@ -94,7 +94,7 @@ export const StakingValues = ({
</div>
) : (
<div sx={{ flex: "column", align: ["start", "center"] }}>
<Text fs={[19]} lh={[19]} color="white" font="GeistMono">
<Text fs={[19]} lh={[19]} color="white">
{t("value.tokenWithSymbol", {
value: data?.availableBalance,
symbol: "HDX",
Expand Down Expand Up @@ -183,7 +183,7 @@ export const StakingValues = ({
</div>
) : (
<div sx={{ flex: "column", align: ["start", "center"] }}>
<Text fs={[19]} lh={[19]} color="white" font="GeistMono">
<Text fs={[19]} lh={[19]} color="white">
{t("value.tokenWithSymbol", {
value: data?.stakePosition?.stake,
symbol: "HDX",
Expand Down Expand Up @@ -244,7 +244,7 @@ export const AprStatValue = ({
const stakeApr = useStakeARP(availableBalance)

return (
<Text fs={[19]} color="white" font="GeistMono">
<Text fs={[19]} color="white">
{stakeApr.isLoading ? (
<Skeleton width={100} height={24} />
) : (
Expand Down

0 comments on commit 6b97f48

Please sign in to comment.