Oscar Franco

Results 141 comments of Oscar Franco

Facing new issues now, here is the updated version of my component: ```ts import Link from "@tiptap/extension-link" import Placeholder from "@tiptap/extension-placeholder" import TaskItem from "@tiptap/extension-task-item" import TaskList from "@tiptap/extension-task-list" import...

I got it working by using refs, which is very inelegant and makes the code quite hard to understand: ```ts const [updateProjectMutation] = useMutation(updateProjectNotes) const tiptapOnUpdateRef = useRef(async ({ editor...

@colindb I assumed `setOptions` should do something similar, but it doesn't seem to be working, in any case, both solutions attempt to do the same, I like yours better, since...

Hmm if you mean if callback should get updated, this has nothing to do with the node_modules, I already tried updating the latest version, but it is rather a problem...

So following similar steps to @sergeymild I have managed to compile: - I added cpr as a git submodule of my main repo - Followed the same steps as @sergeymild...

I have created a test repo if someone is interested in taking a look: https://github.com/ospfranco/libcprtest As I said, I followed the same steps sergey posted to generate the .dylib(s), included...

I've been doing a lot of reading on CMake to try to really understand how you are supposed to build iOS libraries. Here are some of my findings. - Using...

I got it working! Andre answered my [Stack Overflow question](https://stackoverflow.com/questions/73216268/how-to-include-xcode-sub-project-headers) and gave me the exact values I needed to place into Xcode to get it to detect the headers. Now...

It seems on iOS the root CA is not accessible (due to iOS apps being sandboxed). [This StackOverflow answer](https://stackoverflow.com/questions/42432473/programmatically-read-root-ca-certificates-in-ios) seems to suggest the usual approach is to download the apple...

It seems there are a couple of solutions: 1. Bundle your own certificate and pass it to libcurl on runtime (I would not want to do this due to app...