Skip to content

Commit

Permalink
chore:불필요한 라인 제거, 절대경로수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Dahyeeee committed Oct 9, 2023
1 parent 3c69ea9 commit df6d195
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const TripButtons = ({ tripType, tripId, sharedCode, publishState }: Trip

const {
tripData: { isWriter },
} = useTrip(tripType as TripTypeData, tripId);
} = useTrip(tripType, tripId);

const {
isOpen: isDeleteModalOpen,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { useTrip } from '@/hooks/trip/useTrip';

import { memo, useState } from 'react';

import { useRecoilValue } from 'recoil';
Expand All @@ -21,6 +19,8 @@ import {
} from '@components/common/TripInformation/TripInformation.style';
import TripInfoEditModal from '@components/trip/TripInfoEditModal/TripInfoEditModal';

import { useTrip } from '@hooks/trip/useTrip';

import { mediaQueryMobileState } from '@store/mediaQuery';

import { formatDate } from '@utils/formatter';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ import { css } from '@emotion/react';

export const selectStyling = css({
height: '48px',
zIndex: -1,
});

0 comments on commit df6d195

Please sign in to comment.