Jared Ramirez

Results 26 comments of Jared Ramirez

Hmm, I just had another thought. I think changing the `assert` definition to something like the following could work: ```elm -- slight change from above joinErrors : Result (List err)...

Totally see where you're coming from. `assertAll` solve my use case and is straightforward to use. I'll submit a PR when I can!

Hmm, odd. Here's a quick vid of what I'm seeing: https://user-images.githubusercontent.com/8095741/139465527-4131871f-152d-4bf7-893c-0b7bf1018722.mov This is with the latest master branch

@djrobstep I'm hitting this issue in my database. Do you know the status of this PR?

@groner Is there any progress on this or anything I can do to help this along? This same issue is blocking me from using migra in my project!

I was able to work around this by 1. Verifying the OTP 2. Fetch the `user` via [`api.getUser`](https://github.com/supabase/gotrue-js/blob/master/src/GoTrueApi.ts#L297) 3. Calculate `expires_at` from current_time & `expires_in` 4. Create a new session...

I think soft-wrapping would make most sense, but that's just my intuition

Maybe relevant: https://discourse.elm-lang.org/t/upload-files-to-s3/4314/14?u=jaredramirez

Hey good to know, I somehow missed the line `You'll notice that supabase/migrations is now populated with a migration in ..._remote_commit.sql. This migration captures any changes required for your local...

Is the desugared version meant to be usable outside of transforming tuples? Meaning, is the following valid Roc? ``` rec = { a: "hello", 4: 5 } ``` If the...