RequestNetwork / request-apps

Request network Dapps monorepo
MIT License
5 stars 12 forks source link

[create] "balance computation failed" improve hover text #38

Closed MantisClone closed 1 year ago

MantisClone commented 1 year ago

After creating a request, "Unknown" with hover text "The balance computation might have failed" is shown. "Unknown" means that the request has not yet been persisted to IPFS. Thus, I think the text could be improved to help the user understand what is happening.

image

MantisClone commented 1 year ago

I later saw the "Unknown" update to "Awaiting Payment".
image

From this I realize that "Unknown" means that the request has not yet been persisted to IPFS. Thus, I think the text could be improved to help the user understand what is happening.

PijiDev commented 1 year ago

@MantisClone Suggestion to change 'unknown': overpaid: 'Overpaid', waiting: 'Waiting', ... props.status === 'waiting' ? 'The request hasn't been indexed by IPFS yet. Please check back later' : '' ...

MantisClone commented 1 year ago

Hey @PijiDev I'm having trouble visualizing this change based on you description. Can you just make the change and submit a PR?