Skip to content

Commit 99c9cd4

Browse files
committed
chore: remove connections example
1 parent 8fbb7ef commit 99c9cd4

File tree

3 files changed

+1
-144
lines changed

3 files changed

+1
-144
lines changed

src/examples/code/connections.tf

Lines changed: 0 additions & 140 deletions
This file was deleted.

src/examples/code/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import type { ExampleSlug } from "@/examples";
22
import attachGpuExample from "@/examples/code/attach-gpu.tf?raw";
3-
import connectionsExample from "@/examples/code/connections.tf?raw";
43
import basicGovExample from "@/examples/code/basic-governance.tf?raw";
54
import formTypesExample from "@/examples/code/form-types.tf?raw";
65

76
const codeExamples: Record<ExampleSlug, string> = {
87
"attach-gpu": attachGpuExample,
9-
connections: connectionsExample,
108
"basic-governance": basicGovExample,
119
"form-types": formTypesExample,
1210
};

src/examples/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* MIME type, and would require some custom middleware to fix.
77
*/
88

9-
export type ExampleSlug = "attach-gpu" | "connections" | "basic-governance" | "form-types";
9+
export type ExampleSlug = "attach-gpu" | "basic-governance" | "form-types";
1010

1111
export type Example = {
1212
title: string;
@@ -16,7 +16,6 @@ export type Example = {
1616
export const examples: Record<ExampleSlug, string> = {
1717
"basic-governance": "Basic Governance",
1818
"attach-gpu": "Attach GPU",
19-
"connections": "Connections Game",
2019
"form-types": "Form Types"
2120
}
2221

0 commit comments

Comments
 (0)