Skip to content

Commit

Permalink
fix(common): pnpm-lock.yaml에 @babel/code-frame 중복 선언으로 인한 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SEOKKAMONI committed Apr 22, 2024
1 parent df6b6aa commit ff438d7
Show file tree
Hide file tree
Showing 3 changed files with 6,772 additions and 2,356 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/Select/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import { IconExpandMoreFill } from '@seed-design/icon';
import type { ForwardedRef, ReactNode, SelectHTMLAttributes } from 'react';
import type { ForwardedRef, HTMLAttributes, ReactNode } from 'react';
import { forwardRef } from 'react';
import { Flex } from '../Flex';
import { Text } from '../Text';
Expand All @@ -10,7 +10,7 @@ type SelectProps = {
children: ReactNode;
width?: string;
label?: string;
} & SelectHTMLAttributes<HTMLSelectElement>;
} & HTMLAttributes<HTMLSelectElement>;

export const Select = forwardRef(function Select(
{ children, placeholder, label, width = '100%', ...props }: SelectProps,
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/Textarea/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import type { ChangeEvent, ForwardedRef, TextareaHTMLAttributes } from 'react';
import type { ChangeEvent, ForwardedRef, HTMLAttributes } from 'react';
import { forwardRef, useCallback } from 'react';
import { Text } from '../Text';

Expand All @@ -9,7 +9,7 @@ type TextareaProps = {
width?: string;
minHeight?: string;
isAutoHeight?: boolean;
} & TextareaHTMLAttributes<HTMLTextAreaElement>;
} & HTMLAttributes<HTMLTextAreaElement>;

export const Textarea = forwardRef(function Textarea(
{
Expand Down
Loading

0 comments on commit ff438d7

Please sign in to comment.