欧洲之旅结束篇:德国Frankfurt am Main
半路失踪的游客
吵架坑钱的夫妻
似是情侣的导游组合
追随网红的粉丝们
临时退费不来的丈夫
胆小的司机
一场“体验”值拉满的旅行
再见Europe
There is no comment, let's add the first one.
弦圈热门内容
[antd: Message] You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.
I'm getting this error when using MessageWarning: [antd: Message] You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.Here is my code:import { message } from 'antd'; export default function Page() { const [messageApi, contextHolder] = message.useMessage(); const res = await fetch("/api/...", { method: "POST", }); if (!res.ok) { messageApi.error("Error! Fail to login!"); } return ( <Home> ... </Home> ) }