Skip to content

Commit

Permalink
fix: import 린트 수정 #141
Browse files Browse the repository at this point in the history
  • Loading branch information
1119wj authored and Miensoap committed Nov 30, 2024
1 parent 82f3a8d commit c26e21a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion frontend/src/api/interceptors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { ROUTES } from '@/constants/routes';
import { AxiosError, InternalAxiosRequestConfig } from 'axios';
import { postTokenRefresh } from './auth';
import { axiosInstance } from './axiosInstance';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/hooks/api/useUserInfoQuery.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getUserInfo } from '@/api/auth';
import { User } from '@/types';
import { useQuery, useSuspenseQuery } from '@tanstack/react-query';
import { useQuery } from '@tanstack/react-query';

export const useUserInfoQuery = () => {
const { data, refetch, error } = useQuery<User, Error>({
Expand Down
1 change: 0 additions & 1 deletion frontend/src/hooks/useMarker.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useStore } from '@/store/useStore';
import { add } from 'lodash';
import { useEffect, useState } from 'react';

type MarkerCustomProps = {
Expand Down
3 changes: 0 additions & 3 deletions frontend/src/lib/CustomSuperCluseterAlgorithm.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {
Marker,
SuperClusterViewportAlgorithm,
SuperClusterViewportOptions,
} from '@googlemaps/markerclusterer';
Expand All @@ -9,5 +8,3 @@ export class CustomSuperClusterAlgorithm extends SuperClusterViewportAlgorithm {
super(options);
}
}

const createMarkerProxy = (markers: Marker[], onchange: () => void) => {};
1 change: 0 additions & 1 deletion frontend/src/store/googleMapSlice/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { StateCreator } from 'zustand';
import { StoreState } from '@/types';
import {
getGoogleMapClass,
getPlaceClass,
loadGoogleMapsApi,
} from '@/lib/googleMapsAPI-loader';
import { MarkerClusterer } from '@googlemaps/markerclusterer';
Expand Down

0 comments on commit c26e21a

Please sign in to comment.