Skip to content

Commit

Permalink
Merge pull request #10131 from linode/staging
Browse files Browse the repository at this point in the history
Release v1.110.2 - `staging` → `master`
  • Loading branch information
jaalah-akamai authored Jan 31, 2024
2 parents 3d973c5 + bd95d52 commit a83de82
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
6 changes: 6 additions & 0 deletions packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [2024-01-31] - v1.110.2

### Changed:
- Remove VPC beta feedback link

## [2024-01-31] - v1.110.1

### Changed:
- Updated VPC flag for primary navigation

Expand Down
2 changes: 1 addition & 1 deletion packages/manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "linode-manager",
"author": "Linode",
"description": "The Linode Manager website",
"version": "1.110.1",
"version": "1.110.2",
"private": true,
"type": "module",
"bugs": {
Expand Down
7 changes: 1 addition & 6 deletions packages/manager/src/features/VPCs/VPCDetail/VPCDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ import { DocumentTitleSegment } from 'src/components/DocumentTitle';
import { EntityHeader } from 'src/components/EntityHeader/EntityHeader';
import { ErrorState } from 'src/components/ErrorState/ErrorState';
import { LandingHeader } from 'src/components/LandingHeader';
import {
VPC_DOCS_LINK,
VPC_FEEDBACK_FORM_URL,
VPC_LABEL,
} from 'src/features/VPCs/constants';
import { VPC_DOCS_LINK, VPC_LABEL } from 'src/features/VPCs/constants';
import { useRegionsQuery } from 'src/queries/regions';
import { useVPCQuery } from 'src/queries/vpcs';
import { truncate } from 'src/utilities/truncate';
Expand Down Expand Up @@ -112,7 +108,6 @@ const VPCDetail = () => {
labelOptions: { noCap: true },
pathname: `/vpcs/${vpc.label}`,
}}
betaFeedbackLink={VPC_FEEDBACK_FORM_URL}
docsLabel="Docs"
docsLink={VPC_DOCS_LINK}
/>
Expand Down
7 changes: 1 addition & 6 deletions packages/manager/src/features/VPCs/VPCLanding/VPCLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ import { TableCell } from 'src/components/TableCell';
import { TableHead } from 'src/components/TableHead';
import { TableRow } from 'src/components/TableRow';
import { TableSortCell } from 'src/components/TableSortCell';
import {
VPC_DOCS_LINK,
VPC_FEEDBACK_FORM_URL,
VPC_LABEL,
} from 'src/features/VPCs/constants';
import { VPC_DOCS_LINK, VPC_LABEL } from 'src/features/VPCs/constants';
import { useOrder } from 'src/hooks/useOrder';
import { usePagination } from 'src/hooks/usePagination';
import { useVPCsQuery } from 'src/queries/vpcs';
Expand Down Expand Up @@ -96,7 +92,6 @@ const VPCLanding = () => {
return (
<>
<LandingHeader
betaFeedbackLink={VPC_FEEDBACK_FORM_URL}
createButtonText="Create VPC"
docsLink={VPC_DOCS_LINK}
onButtonClick={createVPC}
Expand Down

0 comments on commit a83de82

Please sign in to comment.