Skip to content

Commit

Permalink
Minor : 사용하지 않는 모듈 제거, FIXME 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry committed Dec 1, 2023
1 parent d865c25 commit fc21cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions client/src/components/newpost/SearchAlcoholInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const SearchAlcoholInput = ({ setAlcoholNo }: SearchAlcoholInputInterface) => {
onBlur={() => setIsSearchingAlCohol(false)}
autoComplete="off"
/>
{/* FIXME List 컴포넌트로 분리 */}
{isSearchingAlcohol && (
<Box sx={WrapperStyle}>
<List sx={ListStyle}>
Expand Down
4 changes: 1 addition & 3 deletions client/src/components/wiki/searchDrawer/WikiSearchDrawer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SwipeableDrawer, Stack, styled, Box } from "@mui/material";
import { Stack } from "@mui/material";
import { useContext } from "react";
import WikiPageContext from "@/store/wiki/WikiPageContext";
import WikiSerachArea from "@/components/wiki/searchDrawer/WikiSerachArea";
Expand All @@ -7,7 +7,6 @@ import CustomSwipeableDrawer from "@/components/CustomSwipeableDrawer";
const WikiSearchDrawer = () => {
const { isSearching, setIsSearching } = useContext(WikiPageContext);


return (
<CustomSwipeableDrawer
open={isSearching}
Expand All @@ -22,4 +21,3 @@ const WikiSearchDrawer = () => {
};

export default WikiSearchDrawer;

0 comments on commit fc21cba

Please sign in to comment.