Skip to content

Commit

Permalink
chore: 타입 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ljh0608 committed Sep 2, 2024
1 parent 4993dc6 commit 57d942a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/common/moleculesComponents/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Text from 'components/common/atomComponents/Text';
import { BackIc, ExitIc, HambergerIc, LinkIc, MainLogoIc } from 'components/Icon/icon';
import { useScheduleStepContext } from 'pages/selectSchedule/contexts/useScheduleStepContext';
import { ScheduleStepType } from 'pages/selectSchedule/types';
import { useNavigate, useParams } from 'react-router-dom';
import { useNavigate } from 'react-router-dom';
import useShareLink from 'src/\bhooks/useShareLink';
import styled from 'styled-components';
import { theme } from 'styles/theme';
Expand All @@ -21,9 +21,7 @@ interface HeaderProps {

function Header({ position, setFunnelStep }: HeaderProps) {
const { scheduleStep, setScheduleStep } = useScheduleStepContext();
const { meetingId } = useParams();

const { inviteURL, handleWebShare } = useShareLink(position);
const { handleWebShare } = useShareLink(position || '');

const navigationOptions = [
{
Expand Down

0 comments on commit 57d942a

Please sign in to comment.