Arnaud Didry

Results 5 comments of Arnaud Didry

Hi @sam-gc, thank you for your response. Is it possible to delay the iframe code from loading until `signInWithPopup` or `signInWithRedirect` are called ?

This **dirty** workaround seems to work for me : ```tf locals { envs = [{ name = "FOO" value = "BAR" }] config_sha = sha1("${join("", local.envs.*.value)}-${local.image}") image = "gcr.io/..." zone...

Using a custom type seems to work : ```ts import { customType } from "drizzle-orm/pg-core"; export const identity = (name: string) => customType({ dataType() { return "INTEGER GENERATED ALWAYS AS...

Hi @iolyd , I was indeed on [email protected] & [email protected]. I can reproduce your issue after upgrading. Someone already reported it here : https://github.com/drizzle-team/drizzle-kit-mirror/issues/167 with a workaround (by removing the...

+1 for `enumValues`. [I'm using TS string enums in my codebase](https://github.com/dotansimha/graphql-code-generator/discussions/8993#discussioncomment-6496552) and they don't match the enums generated by the client-preset without this option. ```ts enum EnumFromCodegen { Dog =...