8000 chore: add cherry picks for v2.18.3 by bpmct · Pull Request #16187 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: add cherry picks for v2.18.3 #16187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fmt
  • Loading branch information
bpmct committed Jan 18, 2025
commit 465912b98996c180151aa291f4face8ffbafc76e
8 changes: 4 additions & 4 deletions site/e2e/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,10 +470,10 @@ export const waitUntilUrlIsNotResponding = async (url: string) => {
// Allows users to more easily define properties they want for agents and resources!
type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[]
? RecursivePartial<U>[]
: T[P] extends object | undefined
? RecursivePartial<T[P]>
: T[P];
? RecursivePartial<U>[]
: T[P] extends object | undefined
? RecursivePartial<T[P]>
: T[P];
};

interface EchoProvisionerResponses {
Expand Down
Loading
0