Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Commit

Permalink
chore: silencing console errors by making things optional (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas authored Aug 26, 2020
1 parent 5f090ff commit 195b7b3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ const FlexRowContainer = styled.div`

export interface MetricOptionProps {
metric: {
verbose_name: string;
verbose_name?: string;
metric_name: string;
label: string;
label?: string;
description: string;
warning_text: string;
expression: string;
is_certified?: boolean;
certified_by?: string | null;
certification_details?: string | null;
};
openInNewWindow: boolean;
showFormula: boolean;
showType: boolean;
url: string;
openInNewWindow?: boolean;
showFormula?: boolean;
showType?: boolean;
url?: string;
}

export function MetricOption({
Expand Down

1 comment on commit 195b7b3

@vercel
Copy link

@vercel vercel bot commented on 195b7b3 Aug 26, 2020

Choose a reason for hiding this comment

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

Please sign in to comment.