Skip to content

Commit

Permalink
Fix tsc errors, add to make test
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoBernardino committed Apr 9, 2024
1 parent 4601e30 commit f38600c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"tauri": "tauri",
"format": "biome format --write . && biome check --apply . && cd src-tauri && cargo fmt",
"lint": "biome check .",
"test": "npm run lint"
"test": "npm run lint && tsc --noEmit"
},
"dependencies": {
"@tauri-apps/api": "1.5.3",
Expand Down
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ function App() {
placeholder="[email protected]"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
spellcheck={false}
onInput={(event) =>
setNewAccountUsername(event.currentTarget.value)
}
Expand Down Expand Up @@ -340,7 +340,7 @@ function App() {
placeholder="bewcloud"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
spellcheck={false}
onInput={(event) =>
setNewAccountName(event.currentTarget.value)
}
Expand Down

0 comments on commit f38600c

Please sign in to comment.