Skip to content

Commit

Permalink
fix: 불필요한 prop제거
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoleee committed Jan 29, 2024
1 parent 62d04d5 commit 991e50a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ export default function Home() {
>
{selectedPin ? (
<StorePreviewSection
storeName={selectedPin.storeName}
lat={selectedPin.lat}
lng={selectedPin.lng}
storeId={selectedPin.storeId}
Expand Down
2 changes: 0 additions & 2 deletions src/components/main/StorePreviewSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export interface SearchedPinFromSearchParams {
}

interface StorePreviewSectionProps {
storeName?: string;
storeId?: number;
kakaoStoreId?: number;
lat: number;
Expand All @@ -31,7 +30,6 @@ interface StorePreviewSectionProps {
}

function StorePreviewSection({
storeName,
storeId,
kakaoStoreId,
lat,
Expand Down

0 comments on commit 991e50a

Please sign in to comment.