Skip to content

Commit 22de907

Browse files
committed
Merge remote-tracking branch 'origin/main' into asher/generated-types
2 parents 04cc479 + e8e6d3c commit 22de907

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+64
-57
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 1 deletion

.github/ISSUE_TEMPLATE/doc.md

Lines changed: 1 addition & 1 deletion

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 1 addition & 1 deletion

cli/templateedit.go

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

cli/templates.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ func templates() *cobra.Command {
2525
}
2626
cmd.AddCommand(
2727
templateCreate(),
28-
templateEdit(),
2928
templateInit(),
3029
templateList(),
3130
templatePlan(),

site/src/api/index.test.ts renamed to site/src/api/api.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import axios from "axios"
2-
import { getApiKey, login, logout } from "."
2+
import { getApiKey, login, logout } from "./api"
33
import * as TypesGen from "./typesGenerated"
44

55
// Mock the axios module so that no real network requests are made, but rather
File renamed without changes.

site/src/components/AdminDropdown/AdminDropdown.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { screen } from "@testing-library/react"
22
import React from "react"
3-
import { history, render } from "../../testHelpers"
3+
import { history, render } from "../../testHelpers/renderHelpers"
44
import { AdminDropdown, Language } from "./AdminDropdown"
55

66
const renderAndClick = async () => {

site/src/components/CliAuthToken/CliAuthToken.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { screen } from "@testing-library/react"
22
import React from "react"
3-
import { render } from "../../testHelpers"
3+
import { render } from "../../testHelpers/renderHelpers"
44
import { CliAuthToken } from "./CliAuthToken"
55

66
describe("CliAuthToken", () => {

site/src/components/CodeBlock/CodeBlock.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { screen } from "@testing-library/react"
22
import React from "react"
3-
import { render } from "../../testHelpers"
3+
import { render } from "../../testHelpers/renderHelpers"
44
import { CodeBlock } from "./CodeBlock"
55

66
describe("CodeBlock", () => {

0 commit comments

Comments
 (0)