Skip to content

Commit

Permalink
Merge pull request #371 from Team-kiwing/dev
Browse files Browse the repository at this point in the history
[#371] 1.0.1 배포 핫픽스
  • Loading branch information
SoJuSo authored Mar 21, 2024
2 parents 8e4ea93 + c0cd0a9 commit a7f2c45
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions src/apis/axiosInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ axiosInstance.interceptors.response.use(
}
} else if (status === 400 || status === 404 || status === 409) {
console.error(msg);
notify({
text: '에러가 발생했어요. 새로고침하거나 관리자에게 문의해주세요.',
type: 'error',
});
}
Sentry.captureException(error);
return Promise.reject(error);
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/QuestionCard/QuestionCard.hook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface BundleParsed {

export const useGetMyBundles = (sortingType: string) => {
const query = useQuery<BundleParsed[] | null>({
queryKey: ['myBundles'],
queryKey: ['myBundlesPageHook'],
queryFn: () => getMyBundles(sortingType),
select: (data) => {
return data
Expand Down

0 comments on commit a7f2c45

Please sign in to comment.