Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add annoucement missing space #463

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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