Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
0xChqrles committed Dec 13, 2023
1 parent 86d6cc2 commit 2e1d837
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type InputProps = {
addon?: React.ReactNode
} & BoxProps

const Input = forwardRef(function ({ addon, className, ...props }: InputProps, ref) {
const Input = forwardRef<HTMLElement, InputProps>(function ({ addon, className, ...props }, ref) {
return (
<Box className={clsx(className, styles.inputContainer)}>
<Box as="input" className={styles.input} {...props} ref={ref} />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/theme/components/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const Error = ({ className, ...props }: TextProps) => (
className,
sprinkles({
fontWeight: 'normal',
color: 'vibrantRed',
color: 'error',
fontSize: '14',
})
)}
Expand Down

0 comments on commit 2e1d837

Please sign in to comment.