Daniel Rice

Results 21 comments of Daniel Rice

I am seeing this issue as well. If you use a different timeout value for connect timeout and read timeout. For instance if you pass in (10, 1000), you will...

Look at this PR for example of adding https://github.com/paroj/xpad/pull/109/files There are 3 lines to add. After you add, remove, reinstall as in instructions for upgrading then reboot.

I had to add a mock for the functions ```javascript jest.mock("react-native-safe-area-context", () => ({ getConstants: () => {/* constants to return here */} // additional mocks }) ) ```

I am seeing this issue as well. You can tell in the requests library if you use a different timeout value for connect timeout and read timeout. For instance if...

I had the same issue. In Kwin scripts settings, I disabled Parachute, applied, re-enabled Parachute, applied, and it sorted it out.

I had this same error and realized I was importing bootstrap 3 CSS in my index.html. You can check by inspecting the modal element and looking at the fade property....

+1 for list of path keys. In JS everything is an object and a numeric key can be indexed with a string or a number. Python doesn't and shouldn't work...

try ```node t = require('tcomb-form-native'); ```

I'm having the same issue. I also believe this used to work as expected. I had to switch back to normal keybindings just to edit the environments.

Possibly related, but header names should be case-insensitive. If a post is made with `headers={"Content-Type": "application/xml"}`, the post request checks if "content-type" is in headers and adds "content-type" of "application/json"....