D.Horiyama
D.Horiyama
Thanks for replying! Actually, the password is stored in a Secret resource: ```yaml apiVersion: opentelemetry.io/v1alpha1 kind: OpenTelemetryCollector ... spec: config: env: - name: DB_PASSWORD valueFrom: secretKeyRef: name: db-secrets key: password...
In my project, the error is reproduced. Editing `node_modules/.pnpm/@[email protected][email protected]/node_modules/@graphql-tools/utils/esm/debugTimer.js` fixed the error: ```diff const debugNamesOngoing = new Set(); export function debugTimerStart(name) { - const debugEnvVar = globalThis?.process.env['DEBUG'] || globalThis.DEBUG; +...
https://github.com/react-component/table/blob/75ee0064e54a4b3215694505870c9d6c817e9e4a/src/interface.ts#L76-L90 https://github.com/react-component/table/blob/75ee0064e54a4b3215694505870c9d6c817e9e4a/src/interface.ts#L56 `Table.Column` has a similar problem. `keyof RecordType | readonly (string|number)[]` would be better...