Skip to content

Commit

Permalink
[KAN-149] fix(-): resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
hyo-nu committed Jul 15, 2024
1 parent fe5e459 commit 22d8099
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/src/components/common/ProductSelectField.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState } from 'react';
import Checkbox from '@/components/common/CheckBox';
import Checkbox from '@/components/common/inputs/CheckBox';

const ProductSelectField = ({ label, required, options, onChange, selectedOptions, ...props }) => {
const [isOpen, setIsOpen] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/member/account/AccountInfo.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Input from '@/components/common/Input';
import Input from '@/components/common/inputs/Input';

const AccountInfo = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/member/card/CardInfo.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Input from '@/components/common/Input';
import { Input } from 'postcss';

const CardInfo = () => {
return (
Expand Down
4 changes: 2 additions & 2 deletions client/src/pages/member/PaymentChoosePage.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import NextButton from '@/components/common/StatusNextButton';
import PreviousButton from '@/components/common/StatusPreButton';
import { useStatusStore } from '@/stores/useStatusStore';
import useStatusStepper from '@/hooks/useStatusStepper';
import { useState } from 'react';
import PreviousButton from '@/components/common/buttons/StatusPreButton';
import NextButton from '@/components/common/buttons/StatusNextButton';

const PaymentChoosePage = () => {
const start = 0;
Expand Down
3 changes: 2 additions & 1 deletion client/src/pages/vendor/setting/SettingSimpConsentPage.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SimpConsentQrUrlModal from '@/components/vendor/modal/SimpConsentQrUrlModal';
import { useState } from 'react';
import ProductSelectField from '@/components/common/ProductSelectField';
import Checkbox from '@/components/common/CheckBox';
import Checkbox from '@/components/common/inputs/CheckBox';

const SettingSimpConsentPage = () => {
const [isShowModal, setIsShowModal] = useState(false);
Expand Down Expand Up @@ -74,6 +74,7 @@ const SettingSimpConsentPage = () => {
))}
</div>
</div>
[]
</div>
<hr className='my-6 border-gray-400' />

Expand Down

0 comments on commit 22d8099

Please sign in to comment.