Ciaran Liedeman

Results 55 comments of Ciaran Liedeman

Created a little test project ```go package main import ( "fmt" "log" "os" "github.com/xanzy/go-gitlab" ) func main() { fmt.Printf("Default Branch: %s\n", os.Getenv("CI_DEFAULT_BRANCH")) fmt.Printf("Project Visibility: %s\n", os.Getenv("CI_PROJECT_VISIBILITY")) projectId := os.Getenv("CI_PROJECT_ID") fmt.Printf("Project...

Hi @secustor We can probably detect [GIT_STRATEGY](https://docs.gitlab.com/ee/ci/runners/configure_runners.html#git-strategy) and fail the build. The clone could be used in caes where the pipeline is not cloned by default but I dont need...

Version 11.5 (11E608c)

@Lukasa thats for the help. Deleting Derived data did not help. Back to the original error I created a sample expo project and confirmed everything works as expected (This is...

@glbrntt I havent looked into it again. but seeing as it works with a fresh project I am going to close this out and re-open if I ever encounter it...

@izone-airstream I never did figure it out but I had to drop grpc for reasons un-related to this.

Hi @kendallroth That functionality is actually built into formik. https://github.com/jaredpalmer/formik/blob/b9cc2536a1edb9f2d69c4cd20ecf4fa0f8059ade/packages/formik/src/Formik.tsx#L691 I don't think this library can actually do anything about it.

I have managed to avoid this so far but I thought we might eventually need it. We could create a Context that allows users to customize beaviour ```tsx interface FormikMuiContextType...

I actually use a mixture of both. I have several projects using it and some of the more complicated components (Autocomplete) is really tricky to do right. But yes the...