Dan Alloway

Results 12 comments of Dan Alloway

@syllith yes, I think that would be a possibility!

@mattdesl would extending the router work for you? ```js import { h } from 'preact'; import Router from 'preact-router'; import TransitionGroup from 'preact-transition-group'; export default class TransitionRouter extends Router {...

also, there is this -> https://github.com/prateekbh/liquid-route

@BlakeB415 we have a similar flow in our app, and we used a `PassThrough` stream to work around this same issue ``` import { PassThrough } from "stream"; import {...

looked at doing this same thing and then stumbled on this PR, thanks for submitting this @johncomposed this change seems awfully straight forward and low risk as it's just passing...

it's not documented well, but here is the spot in the signup flow where the metadata is automatically updated if the `Data` param is passed through: https://github.com/supabase/gotrue/blob/master/api/signup.go#L99-L101

> If we can add some tests that show it working I can merge this in 👍 (otherwise I'll dig into this next week myself) 👍🏼 thank you

@kiwicopple changes made in #130 with tests

@teddyteh here is what we're doing in an app we're currently building it's pseudo code but I hope it helps get the general idea across ```js import { StyleProvider }...