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 bd7142b commit 3b228bfCopy full SHA for 3b228bf
web/app/chat/page.tsx
@@ -1,6 +1,5 @@
1
"use client";
2
3
-import { Typography } from "@mui/material";
4
import { useSearchParams } from "next/navigation";
5
import { Suspense } from "react";
6
import { useRoomsOverview } from "~/api/chat/hooks";
@@ -31,7 +30,7 @@ function ChatListContent() {
31
30
) : state.current === "loading" ? (
32
<FullScreenCircularProgress />
33
) : state.current === "error" ? (
34
- <Typography color="error">Error: {state.error.message}</Typography>
+ <p color="error">Error: {state.error.message}</p>
35
) : (
36
<RoomList roomsData={state.data} />
37
);
0 commit comments