Skip to content

Commit 0467992

Browse files
committed
Add husky setup call
1 parent 9fabbd3 commit 0467992

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"lint": "next lint --ignore-path .gitignore",
1515
"panda:watch": "panda --watch",
1616
"precommit": "concurrently \"pnpm lint\" \"pnpm typecheck\"",
17-
"prepare": "panda codegen",
17+
"prepare": "concurrently \"husky\" \"panda codegen\"",
1818
"start": "next start",
1919
"start:local": "concurrently \"next start -p 3001\" \"npx local-ssl-proxy --key ./certificates/localhost-key.pem --cert ./certificates/localhost.pem --source 3000 --target 3001\"",
2020
"test": "vitest",
@@ -55,7 +55,6 @@
5555
"eslint-config-prettier": "^9.1.0",
5656
"eslint-plugin-prettier": "^5.2.1",
5757
"husky": "^9.1.7",
58-
"playwright": "^1.49.0",
5958
"prettier": "^3.3.3",
6059
"rimraf": "^6.0.1",
6160
"tsx": "^4.19.2",

pnpm-lock.yaml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/components/Messages.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ const MessageContainer = styled("div", {
2323
});
2424

2525
type Props = {
26-
isLoading: boolean;
2726
messages: MessageType[];
2827

2928
hasError?: boolean;
29+
isLoading?: boolean;
3030
onDelete?: (id: string) => void;
3131
onRetry?: () => void;
3232
showCopyAll?: boolean;

0 commit comments

Comments
 (0)