Skip to content

Commit

Permalink
Fix: build 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kangsinbeom committed Jul 5, 2024
1 parent b624f51 commit 6591c98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apis/instance.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios from 'axios';
import { memberStore } from '@/stores/member';
import { getNewToken } from './member';
// import { getNewToken } from './member';

const instance = axios.create({
baseURL: import.meta.env.VITE_BASE_URL,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/main/components/keywordFilter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const KeywordFilter = ({ buttons }: KeywordFilterProps) => {
const { setIsExpand } = useOutsideClick();
const [inputFocus, setInputFocus] = useState<boolean>(false);
const {
filterValue: { category },
// filterValue: { category },
onChange: setFilterValue,
} = useStore(filterStore);
const debouncedKeyword = useDebounce({ value: form.keyword });
Expand Down

0 comments on commit 6591c98

Please sign in to comment.