Inder Singh

Results 12 comments of Inder Singh

The only solution so far is to wrap the player in another component and import that component. Then we can use dynamic imports and the ref methods work as expected....

I fixed this error like this=> In the domain, add your app's url, Do not add https , for example => sample.herokuapp.com and add another property url, here we have...

@TheDarkStrix wrap the modules inside useMemo() ``` const modules=useMemo(()=>({ toolbar: { container: [ [{ header: [1, 2, false] }], ["bold", "italic", "underline", "strike", "blockquote"], [ { list: "ordered" }, {...

@davidkhierl Dynamically import the react-player to remove this error. This fixed the error for me. No need to check for window object. ```javascript import dynamic from "next/dynamic"; const ReactPlayer =...

@degitgitagitya It seems to be a issue with `[email protected]`. I downgraded to `2.10.0` and `onProgress` worked again. I tested with `[email protected]` , `[email protected]` , `[email protected]` #1453

**Just read through the Dockerfile, so I might be missing something.** All the configs are copied from `ansible/files` to `/etc/postgresql`. https://github.com/supabase/postgres/blob/develop/Dockerfile-15#L162 And in this [postgresql.conf](https://github.com/supabase/postgres/blob/develop/ansible/files/postgresql_config/postgresql.conf.j2#L42) file which is copied to...

>and I did not spot the reason why it reports missing /var/lib/postgresql/data Let me clarify. postgres entrypoint is `docker-entrypoint.sh`. db directory is created by calling [docker_create_db_directories](https://github.com/supabase/postgres/blob/develop/docker/docker-entrypoint.sh#L35). This function is imported...

> As far as I can tell, it is indeed some logic in the Studio source code that builds the errant url. Trying to narrow down on this this afternoon....

@BenIsenstein This is not a bug. Storage service uses the headers it receives to construct the url for chunks. Kong passes `x-forwarded-port` ,`x-forwarded-prefix` and `x-forwarded-proto` to storage service. The `x-forwarded-port`...

Smaller files work because those are uploaded in one go. This issue only arises when studio has to upload chunks of file. Because for these chunks it has to use...