Removed console logs
Some checks are pending
CI / Foundry project (push) Waiting to run

This commit is contained in:
mic0 2024-10-24 14:32:16 +02:00
parent 0dd53f9c1f
commit a8cd6a1b5c
Signed by: mico
GPG Key ID: A3F8023524CF1C8D
2 changed files with 0 additions and 3 deletions

View File

@ -37,8 +37,6 @@ export const toReadable = (value: bigint, applyTokenDivision?: boolean) => {
{ value: BigInt('1000000000000000000000000000000000000000000000000000000'), suffix: 'septendecillion' },
];
console.log(value)
for (let i = 0; i < suffixes.length; i++) {
if (value < suffixes[i].value) {
if (i == 0) {

View File

@ -25,7 +25,6 @@ const Header = () => {
const perSecondParagraph = useMemo(() => {
const perSecond = toReadable(army?.profit_per_second ?? BigInt(0))
console.log(perSecond, army?.profit_per_second)
return (isRegistered) ?
<p className={styles.counter_per_seconds}>per second: {perSecond}</p>
: null