Skip to content

Commit 3ec255a

Browse files
authored
fix: cooldown (#1945)
1 parent ee55148 commit 3ec255a

File tree

1 file changed

+2
-2
lines changed
  • apps/staking/src/components/ProgramSection

1 file changed

+2
-2
lines changed

apps/staking/src/components/ProgramSection/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,13 @@ const TokenOverview = ({
210210
{cooldown > 0n && (
211211
<div className="mt-2 text-xs text-neutral-500">
212212
<Tokens>{cooldown}</Tokens> end{" "}
213-
{epochToDate(currentEpoch + 1n).toLocaleString()}
213+
{epochToDate(currentEpoch + 2n).toLocaleString()}
214214
</div>
215215
)}
216216
{cooldown2 > 0n && (
217217
<div className="mt-2 text-xs text-neutral-500">
218218
<Tokens>{cooldown2}</Tokens> end{" "}
219-
{epochToDate(currentEpoch + 2n).toLocaleString()}
219+
{epochToDate(currentEpoch + 1n).toLocaleString()}
220220
</div>
221221
)}
222222
</>

0 commit comments

Comments
 (0)