Skip to content

Commit

Permalink
add annoucement missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-babylonlabs committed Dec 6, 2024
1 parent 01538d6 commit c50cd73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-staking",
"version": "0.3.16",
"version": "0.3.17",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface UnbondingDisabledBannerProps {}

export const UnbondingDisabledBanner: FC<UnbondingDisabledBannerProps> = () => {
if (!shouldDisableUnbonding()) return null;
const { network, coinName } = getNetworkConfig();
const { network } = getNetworkConfig();

return (
<div className="w-full bg-[#FDF2EC] min-h-[50px] p-2 lg:min-h-[40px] flex items-center justify-center">
Expand All @@ -26,7 +26,7 @@ export const UnbondingDisabledBanner: FC<UnbondingDisabledBannerProps> = () => {
</strong>{" "}
<span className="block text-xs md:text-sm md:inline">
To support a smooth transition of the {network} to Phase-2,
on-demand unbonding has been disabled until the phase-2 {network}
on-demand unbonding has been disabled until the phase-2 {network}{" "}
launch.
</span>
</p>
Expand Down

0 comments on commit c50cd73

Please sign in to comment.