Skip to content

Commit

Permalink
feat: testing vercel deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
createhb21 committed Sep 30, 2024
1 parent 80cc87b commit a57675b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions @natives/useHandleBottomNav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { nativeMethodUtils } from "../utils/nativeMethodUtils";

type SlideDirectionType = string | null;

const useHandleMove = (setSlideDirection: SetterOrUpdater<SlideDirectionType>) => {
export const useHandleMove = (setSlideDirection: SetterOrUpdater<SlideDirectionType>) => {
const handleHapticFeedback = useCallback(() => {
if (isWebView()) {
nativeMethodUtils.haptic();
Expand All @@ -20,5 +20,3 @@ const useHandleMove = (setSlideDirection: SetterOrUpdater<SlideDirectionType>) =

return handleMove;
};

export default useHandleMove;
2 changes: 1 addition & 1 deletion components/BottomNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useSession } from "next-auth/react";
import { useSetRecoilState } from "recoil";
import styled from "styled-components";

import useHandleMove from "../@natives/useHandleBottomNav";
import { useHandleMove } from "../@natives/useHandleBottomNav";
import { getStudyStandardDate } from "../libs/study/date/getStudyStandardDate";
import { slideDirectionState } from "../recoils/navigationRecoils";
import { convertLocationLangTo } from "../utils/convertUtils/convertDatas";
Expand Down

0 comments on commit a57675b

Please sign in to comment.