Skip to content

Commit

Permalink
Pin version & lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Nov 28, 2024
1 parent c5ffc4f commit 66e08c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.57"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2", features = [] }
tauri-build = { version = "2.0.3", features = [] }

[dependencies]
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/components/TauriDropZone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function TauriDropzone({
})
.then((res) => {
if (res !== null) {
onDrop(res as string);
onDrop(res);
}
})
.catch((err) => {
Expand Down

0 comments on commit 66e08c3

Please sign in to comment.