10000 chore: remove apitypings specific go.mod by Emyrk · Pull Request #15899 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: remove apitypings specific go.mod #15899

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 11 commits into from
Dec 18, 2024
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
Next Next commit
fmt
  • Loading branch information
Emyrk committed Dec 17, 2024
commit 4231f259c2a277bc2ed691f58954a9a81c5bdd0b
5 changes: 2 additions & 3 deletions site/src/pages/HealthPage/DERPPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,12 @@ const flags: BooleanKeys<NetcheckReport>[] = [

type BooleanKeys<T> = {
[K in keyof T]: T[K] extends boolean | null ? K : never;
}[keyof T];

}[keyof T];

export const DERPPage: FC = () => {
const { derp } = useOutletContext<HealthcheckReport>();
const { netcheck, regions, netcheck_logs: logs } = derp;
const safeNetcheck = netcheck || {} as NetcheckReport;
const safeNetcheck = netcheck || ({} as NetcheckReport);
const theme = useTheme();

return (
Expand Down
Loading
0