From 172bf61648dfd86690bc11f98c9cdc4527714d44 Mon Sep 17 00:00:00 2001 From: Satish Gandham Date: Wed, 16 Jun 2021 10:42:41 +0530 Subject: [PATCH] - Fix typo in type definitions --- app/client/src/utils/PerformanceTracker.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/client/src/utils/PerformanceTracker.ts b/app/client/src/utils/PerformanceTracker.ts index beb9fa9224..d427cf2127 100644 --- a/app/client/src/utils/PerformanceTracker.ts +++ b/app/client/src/utils/PerformanceTracker.ts @@ -37,8 +37,8 @@ export enum PerformanceTransactionName { } export type PerfTag = { - name: "string"; - value: "string"; + name: string; + value: string; }; export interface PerfLog { sentrySpan: Span;