Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 27c06fd

Browse files
committed
Remove double footer
1 parent 74211bb commit 27c06fd

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

site/src/pages/templates/[organization]/[template]/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { EmptyState } from "../../../../components/EmptyState"
88
import { ErrorSummary } from "../../../../components/ErrorSummary"
99
import { Header } from "../../../../components/Header"
1010
import { FullScreenLoader } from "../../../../components/Loader/FullScreenLoader"
11-
import { Footer } from "../../../../components/Page"
1211
import { Column, Table } from "../../../../components/Table"
1312
import { unsafeSWRArgument } from "../../../../util"
1413
import { firstOrItem } from "../../../../util/array"
@@ -98,7 +97,6 @@ export const TemplatePage: React.FC = () => {
9897
<Paper style={{ maxWidth: "1380px", margin: "1em auto", width: "100%" }}>
9998
<Table {...tableProps} />
10099
</Paper>
101-
<Footer />
102100
</div>
103101
)
104102
}

site/src/pages/templates/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { CodeExample } from "../../components/CodeExample/CodeExample"
99
import { ErrorSummary } from "../../components/ErrorSummary"
1010
import { Header } from "../../components/Header"
1111
import { FullScreenLoader } from "../../components/Loader/FullScreenLoader"
12-
import { Footer } from "../../components/Page"
1312
import { Column, Table } from "../../components/Table"
1413

1514
export const TemplatesPage: React.FC = () => {
@@ -74,7 +73,6 @@ export const TemplatesPage: React.FC = () => {
7473
<Paper style={{ maxWidth: "1380px", margin: "1em auto", width: "100%" }}>
7574
<Table {...tableProps} />
7675
</Paper>
77-
<Footer />
7876
</div>
7977
)
8078
}

site/src/pages/workspaces/[workspace].tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import useSWR from "swr"
55
import * as Types from "../../api/types"
66
import { ErrorSummary } from "../../components/ErrorSummary"
77
import { FullScreenLoader } from "../../components/Loader/FullScreenLoader"
8-
import { Footer } from "../../components/Page"
98
import { Workspace } from "../../components/Workspace"
109
import { unsafeSWRArgument } from "../../util"
1110
import { firstOrItem } from "../../util/array"
@@ -50,8 +49,6 @@ export const WorkspacePage: React.FC = () => {
5049
<div className={styles.inner}>
5150
<Workspace organization={organization} template={template} workspace={workspace} />
5251
</div>
53-
54-
<Footer />
5552
</div>
5653
)
5754
}

0 commit comments

Comments
 (0)