Skip to content

Commit

Permalink
Merge pull request #303 from boostcampwm-2024/fix/build-error
Browse files Browse the repository at this point in the history
[Fix] 빌드 에러 수정
  • Loading branch information
ShipFriend0516 authored Dec 2, 2024
2 parents 2ccc3d3 + 11a5c93 commit 7e9a72a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/common/TitleInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useEffect, useState } from "react";
interface TitleProps {
placeholder: string;
initValue?: string;
onChange?: (e: React.ChangeEvent<any>) => void;
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
minLength?: number;
maxLength?: number;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const TitleSection = () => {
<SelectTitle title="스터디 세션" />
<TitleInput
placeholder="예) 프론트엔드 면접 스터디"
onChange={setSessionName}
onChange={(e) => setSessionName(e.target.value)}
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/SessionPage/hooks/usePeerConnection.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useRef, useState } from "react";
import { Socket } from "socket.io-client";
import { PeerConnection } from "../type/session";
import { PeerConnection } from "@hooks/type/session";
import { SIGNAL_EMIT_EVENT } from "@/constants/WebSocket/SignalingEvent.ts";

interface User {
Expand Down

0 comments on commit 7e9a72a

Please sign in to comment.