Skip to content

Commit

Permalink
🏷️Update: setValue Type
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethen1264 committed Nov 2, 2024
1 parent dbb256a commit 3ce59f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entities/create-exhibition/model/useAddressSearch.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { useEffect } from 'react';
import { Dispatch, SetStateAction, useEffect } from 'react';

interface AddressData {
address: string;
}

export const useAddressSearch = (
setValue: React.Dispatch<React.SetStateAction<string>>,
setValue: Dispatch<SetStateAction<string>>,
) => {
useEffect(() => {
const script = document.createElement('script');
Expand Down

0 comments on commit 3ce59f4

Please sign in to comment.