Skip to content

feat: add cross-origin reporting for telemetry in the dashboard #13612

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 20, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix embedded metadata
  • Loading branch information
kylecarbs committed Jun 20, 2024
commit b98df0d3dd611527ef05fa308cde0ceada1a733d
2 changes: 0 additions & 2 deletions site/src/hooks/useEmbeddedMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const DEFAULT_METADATA_KEY = "property";
* attributes
*/
type AvailableMetadata = Readonly<{
telemetry: boolean;
user: User;
experiments: Experiments;
appearance: AppearanceConfig;
Expand Down Expand Up @@ -82,7 +81,6 @@ export class MetadataManager implements MetadataManagerApi {
this.trackedMetadataNodes = new Map();

this.metadata = {
telemetry: this.registerValue("telemetry"),
user: this.registerValue<User>("user"),
appearance: this.registerValue<AppearanceConfig>("appearance"),
entitlements: this.registerValue<Entitlements>("entitlements"),
Expand Down
Loading