Skip to content

Commit f8caa9c

Browse files
chore(sonar): unexpected any specify a different type
1 parent 07d42e9 commit f8caa9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ type ModalHeaderProps = {
6161

6262
export const useModal = () => {
6363
const ref = useRef<BottomSheetModal>(null);
64-
const present = useCallback((data?: any) => {
64+
const present = useCallback((data?: unknown) => {
6565
ref.current?.present(data);
6666
}, []);
6767
const dismiss = useCallback(() => {

0 commit comments

Comments
 (0)