docs(http): fix connectTimeout option in README (#3451)

This commit is contained in:
nandanpugalia
2026-06-15 13:38:31 +05:30
committed by GitHub
parent 0767dcbd5c
commit aecec42d5d
+1 -1
View File
@@ -62,7 +62,7 @@ Afterwards all the plugin's APIs are available through the JavaScript guest bind
import { fetch } from '@tauri-apps/plugin-http'
const response = await fetch('http://localhost:3003/users/2', {
method: 'GET',
timeout: 30
connectTimeout: 30
})
```