Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauro Takeda committed Aug 3, 2023
1 parent bf68d1c commit 4bff5c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions react/utils/metrics/createQuote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const GRAPHQL_URL = (accountName: string, workspace?: string) => {
type CreateQuoteFieldsMetric = {
cost_center_id: string
cost_center_name: string
buy_org_id: string
buy_org_name: string
buyer_org_id: string
buyer_org_name: string
member_id: string
member_email: string
role: string
Expand Down Expand Up @@ -95,8 +95,8 @@ const buildCreateQuoteMetric = async (
description: 'Create Quotation Action - UI',
account: metricsParam.account,
fields: {
buy_org_id: metricsData.organization,
buy_org_name: metricsData.organizationName,
buyer_org_id: metricsData.organization,
buyer_org_name: metricsData.organizationName,
cost_center_id: metricsData.costId,
cost_center_name: metricsData.costCenterName,
member_id: namespaces?.profile?.id?.value,
Expand Down
8 changes: 4 additions & 4 deletions react/utils/metrics/useQuote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ type UseQuoteFieldsMetric = {
creator_email: string
user_email: string
cost_center_name: string
buy_org_id: string
buy_org_name: string
buyer_org_id: string
buyer_org_name: string
quote_last_update: string
}

Expand All @@ -35,8 +35,8 @@ const buildUseQuoteMetric = (
description: 'Use Quotation Action - UI',
account,
fields: {
buy_org_id: quoteState.organization,
buy_org_name: quoteState.organizationName,
buyer_org_id: quoteState.organization,
buyer_org_name: quoteState.organizationName,
cost_center_name: quoteState.costCenterName,
quote_id: quoteState.id,
quote_reference_name: quoteState.referenceName,
Expand Down

0 comments on commit 4bff5c2

Please sign in to comment.