Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
"fuzzysearch": "1.0.x",
"gherkin-lint": "^4.2.4",
"git-url-parse": "^11.4.0",
"graphql": "^14.0.0",
"graphql": "^15.0.0",
"i18next": "^25.8.18",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-conv": "16.0.0",
Expand Down Expand Up @@ -234,10 +234,10 @@
"@axe-core/playwright": "^4.11.3",
"@babel/core": "^7.28.5",
"@cypress/webpack-preprocessor": "^7.0.2",
"@graphql-codegen/cli": "^1.15.1",
"@graphql-codegen/typescript": "^1.15.1",
"@graphql-codegen/typescript-graphql-files-modules": "^1.15.1",
"@graphql-codegen/typescript-operations": "^1.15.1",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-graphql-files-modules": "^3.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@kubernetes/client-node": "^1.4.0",
"@playwright/test": "^1.59.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
Expand Down Expand Up @@ -279,7 +279,7 @@
"find-up": "4.x",
"fork-ts-checker-webpack-plugin": "9.1.0",
"glob": "7.x",
"graphql-tag": "^2.10.3",
"graphql-tag": "^2.12.6",
"html-webpack-plugin": "5.6.5",
"html-webpack-skip-assets-plugin": "^1.0.4",
"husky": "^8.0.3",
Expand Down
2 changes: 1 addition & 1 deletion frontend/packages/console-shared/src/hooks/useTelemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
import { useUser } from './useUser';
import { useUserPreference } from './useUserPreference';

export interface ClusterProperties {
interface ClusterProperties {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are unexporting this interface? No objection just seems irrelevant to the overall change.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

frontend job was failing because this export was unused

clusterId?: string;
clusterType?: string;
consoleVersion?: string;
Expand Down
Loading