newraina
newraina
现在是: ```js fetch('...') .then(r => Promise.resolve(afterResponse(r))) ``` 如果 api 因为跨域或者网络问题让 fetch 这一步抛错,是否也应该让 afterResponse 有机会处理错误?比如去掉全局 loading 或者弹窗通知用户: ```js fetch('...') .then(r => Promise.resolve(afterResponse(r))) .catch(e => { afterResponse(e) throw e }) ```
**Thank you for your contribution** to the [KodaDot - One Stop Shop for Polkadot NFTs](https://kodadot.xyz). 👇 __ Let's make a quick check before the contribution. ## PR Type - [...
### Clear and concise description of the problem  Right now, the only way to pick files is by clicking on the dashed box; dragging...
### Description `/profile/xxx` 和 `/feed/xxx` 路由下的 header 在 1024~1280px 的页面宽度下显示有点异常,看不到圆角和外边距:  可以在这里验证问题:https://app.follow.is/feed/41223694984583170 修复后:  ### Linked Issues ### Additional context
### Proposal Details The current [templates/react-counter](https://github.com/rooch-network/rooch/tree/main/sdk/typescript/templates/react-counter) lacks session expiration handling. As this template is used in new projects, the absence of this feature can lead to its omission in user...