From 5a29ce159c16cb68e15aebc0d094a3e36dc1ceff Mon Sep 17 00:00:00 2001 From: jiohjung98 Date: Fri, 31 May 2024 17:13:55 +0900 Subject: [PATCH] fix: eslint disable --- src/components/home/SearchModal.tsx | 1 + src/store/branch.store.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/home/SearchModal.tsx b/src/components/home/SearchModal.tsx index eb42759..d249c13 100644 --- a/src/components/home/SearchModal.tsx +++ b/src/components/home/SearchModal.tsx @@ -6,6 +6,7 @@ import SelectOfficeMap from './SelectOfficeMap'; interface SearchModalProps { onClose: () => void; + // eslint-disable-next-line no-unused-vars onBranchSelect: (branch: Branch) => void; } diff --git a/src/store/branch.store.ts b/src/store/branch.store.ts index f69a459..9eb7d74 100644 --- a/src/store/branch.store.ts +++ b/src/store/branch.store.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-unused-vars */ import { create } from 'zustand'; import { Branch } from '@/api/types/branch'; import { persist } from 'zustand/middleware';