Skip to content

Commit

Permalink
feat(my-info): 내 정보 페이지 API 연동 (#29)
Browse files Browse the repository at this point in the history
* 카드 추가 모달 구현

* type 명 변경

* feat: 카드 조회 api 연동

* CustomDialog

* 카드 추가하기 기능 구현

* 카드삭제 기능 구현

* 터치버튼

* http

* 쿼리키 분리

* 카드 추가 후 에디터로 이동

* ui 일부 수정

* 제목 색상 변경

* delete
  • Loading branch information
woo-jk authored and eunbeann committed Aug 25, 2024
1 parent 52fe24b commit 07dc1df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ function Content({
);
}

function Notice({ children, className }: StrictPropsWithChildren<{ className?: string }>) {
function Notice({ children, className }: StrictPropsWithChildren<{ className?: string }>) {
const { disabled } = useTagSelectorContext();

Expand All @@ -89,6 +90,7 @@ function Notice({ children, className }: StrictPropsWithChildren<{ className?: s
);
}

function TagList({ title, children, className }: StrictPropsWithChildren<{ title?: string; className?: string }>) {
function TagList({ title, children, className }: StrictPropsWithChildren<{ title?: string; className?: string }>) {
const { disabled } = useTagSelectorContext();

Expand All @@ -99,7 +101,6 @@ function TagList({ title, children, className }: StrictPropsWithChildren<{ title
</div>
);
}

function TagSelector({
children,
className,
Expand All @@ -112,6 +113,9 @@ function TagSelector({
<Component {...getBaseProps()} className={cn(getBaseProps().className, className)}>
{children}
</Component>
<Component {...getBaseProps()} className={cn(getBaseProps().className, className)}>
{children}
</Component>
</TagSelectorProvider>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/system/components/Icon/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { More } from './SVG/More';
import { Pip } from './SVG/Pip';
import { Profile } from './SVG/Profile';
import { ProfileFill } from './SVG/ProfileFill';
import Refresh from './SVG/Refresh';
import { Refresh } from './SVG/Refresh';
import { Remove } from './SVG/Remove';
import { RightChevron } from './SVG/RightChevron';
import { Search } from './SVG/Search';
Expand Down
2 changes: 1 addition & 1 deletion src/system/components/Icon/SVG/Refresh.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IconBaseType } from './type';

export default function Refresh({ size, color }: IconBaseType) {
export function Refresh({ size, color }: IconBaseType) {
return (
<svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox={`0 0 ${size} ${size}`} fill="none">
<g id="Icon/Normal/Refresh">
Expand Down

0 comments on commit 07dc1df

Please sign in to comment.