Telegram (ask questions / claim the issue here first): https://t.me/+DOylgFv1jyJlNzM0
Labels: bug, good first issue, frontend, Stellar Wave
There's a stray Token: line inside handleWithdraw that's just leftover junk.
frontend/src/app/streams/[id]/page.tsx:219: right before setWithdrawing(true) there's a bare Token: which is actually a JS labeled statement doing nothing. It's accidental leftover code and the kind of thing lint should be catching.
Done when
Where to start
One line in page.tsx. Don't refactor the withdraw flow, just delete the label. Good first issue.
Labels:
bug,good first issue,frontend,Stellar WaveThere's a stray
Token:line insidehandleWithdrawthat's just leftover junk.frontend/src/app/streams/[id]/page.tsx:219: right beforesetWithdrawing(true)there's a bareToken:which is actually a JS labeled statement doing nothing. It's accidental leftover code and the kind of thing lint should be catching.Done when
Token:label is removed fromhandleWithdrawWhere to start
One line in
page.tsx. Don't refactor the withdraw flow, just delete the label. Good first issue.