mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-04 04:45:11 +00:00
Small fixes for amounts
Needed amounts seemed odd, did small fix hopefully the right way
This commit is contained in:
parent
647d2f74df
commit
391190f33f
1 changed files with 2 additions and 2 deletions
|
@ -23,10 +23,10 @@ function getChannelLevel(amount: number): number {
|
||||||
case amount >= 50 && amount < 250:
|
case amount >= 50 && amount < 250:
|
||||||
level = 3;
|
level = 3;
|
||||||
break;
|
break;
|
||||||
case amount >= 100 && amount < 1000:
|
case amount >= 250 && amount < 1000:
|
||||||
level = 4;
|
level = 4;
|
||||||
break;
|
break;
|
||||||
case amount > 1000:
|
case amount >= 1000:
|
||||||
level = 5;
|
level = 5;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue