We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 169f58b commit b547bb0Copy full SHA for b547bb0
web/app/chat/page.tsx
@@ -30,7 +30,7 @@ function ChatListContent() {
30
) : state.current === "loading" ? (
31
<FullScreenCircularProgress />
32
) : state.current === "error" ? (
33
- <p color="error">Error: {state.error.message}</p>
+ <p className="decoration-red">Error: {state.error.message}</p>
34
) : (
35
<RoomList roomsData={state.data} />
36
);
0 commit comments