Skip to content

Commit 98bd632

Browse files
committed
[FIX] npm 빌드 에러 수정
- InputProps 빈 인터페이스를 type alias로 변경 - package.json repository URL 수정
1 parent 07fdd64 commit 98bd632

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

apps/web/src/components/ui/input.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import * as React from "react";
22
import { cn } from "@/lib/utils";
33

4-
export interface InputProps
5-
extends React.InputHTMLAttributes<HTMLInputElement> {}
4+
export type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
65

76
const Input = React.forwardRef<HTMLInputElement, InputProps>(
87
({ className, type, ...props }, ref) => {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
"license": "MIT",
4141
"repository": {
4242
"type": "git",
43-
"url": "https://github.com/nicered/claudeship.git"
43+
"url": "https://github.com/Nicered/ClaudeShip.git"
4444
},
45-
"homepage": "https://github.com/nicered/claudeship#readme",
45+
"homepage": "https://github.com/Nicered/ClaudeShip#readme",
4646
"engines": {
4747
"node": ">=20.0.0",
4848
"pnpm": ">=9.0.0"

0 commit comments

Comments
 (0)