Commit bd773dd9 authored by blackheaven's avatar blackheaven
Browse files

revert commit & solved none profile image

parent d812afb0
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4,8 +4,8 @@ RUN mkdir -p /app
WORKDIR /app
ADD . /app

RUN npm install --legacy-peer-deps && npm run build
RUN npm install --legacy-peer-deps

EXPOSE 3000

CMD ["npm" , "run", "start"]
 No newline at end of file
CMD ["npm" , "run", "dev"]
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -66,8 +66,8 @@ function SidebarOption({chatData}) {
            <SidebarOptionContainer
                onClick={()=>setRoomId(chatData.roomId)}
                >
                    {!!obUser.current ? <>
                        <Image src={obUser.current["photoURL"]} alt="상대방" width="30" height="30" style={{margin:"10px", borderRadius:"100px"}} layout="fixed"/>
                    {user?.photoURL ? <>
                        <Image src={user?.photoURL} alt="상대방" width="30" height="30" layout="fixed" style={{margin:"10px", borderRadius: "100px"}}/>
                    </>:<>
                        <Avatar sx={{width:"30px", height:"30px", margin:"10px"}}/>
                    </>}