Skip to content

Commit

Permalink
fix: 환장중
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari committed Sep 26, 2024
1 parent 1ff1919 commit 9763145
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions client/src/pages/AddBillFunnel/steps/MembersStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {FixedButton, Flex, Input, Text} from '@components/Design';

import {BillInfo} from '../AddBillFunnel';

Check failure on line 12 in client/src/pages/AddBillFunnel/steps/MembersStep.tsx

View workflow job for this annotation

GitHub Actions / test

There should be at least one empty line between import groups
import {useRef} from 'react';

Check failure on line 13 in client/src/pages/AddBillFunnel/steps/MembersStep.tsx

View workflow job for this annotation

GitHub Actions / test

There should be at least one empty line between import groups

Check failure on line 13 in client/src/pages/AddBillFunnel/steps/MembersStep.tsx

View workflow job for this annotation

GitHub Actions / test

`react` import should occur before import of `@components/Design/components/Top/Top`
import {isIOS} from '@utils/detectDevice';

Check failure on line 14 in client/src/pages/AddBillFunnel/steps/MembersStep.tsx

View workflow job for this annotation

GitHub Actions / test

`@utils/detectDevice` import should occur before import of `../AddBillFunnel`

interface Props {
billInfo: BillInfo;
Expand Down Expand Up @@ -92,22 +93,24 @@ const MembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) =>
</div>
</div>
</div>
<input
ref={hiddenRef}
css={css`
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
{isIOS() && (
<input
ref={hiddenRef}
css={css`
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
`}
/>
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
`}
/>
)}
<FixedButton
variants={isPendingPostBill || isPendingPostMembers ? 'loading' : 'primary'}
disabled={!canSubmitMembers}
Expand Down

0 comments on commit 9763145

Please sign in to comment.