Skip to content

Commit 112b4ce

Browse files
committed
patch
1 parent 986dd5f commit 112b4ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

server/src/router/picture.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import bodyParser from "body-parser";
2+
import { safeParseInt } from "common/lib/result/safeParseInt";
23
import express from "express";
3-
import { safeParseInt } from "../common/lib/result/safeParseInt";
44
import * as chat from "../database/chat";
55
import * as relation from "../database/matches";
66
import * as storage from "../database/picture";

web/src/components/chat/RoomList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Box, List, Typography } from "@mui/material";
2+
import type { RoomOverview } from "common/types";
23
import { useNavigate } from "react-router-dom";
3-
import type { RoomOverview } from "../../common/types";
4-
import { HumanListItem } from "../human/humanListItem";
4+
import { HumanListItem } from "~/components/human/humanListItem";
55

66
type RoomListProps = {
77
roomsData: RoomOverview[] | null;

0 commit comments

Comments
 (0)