From 0eb3a74951d3a5067551b6d99107b71c210f2922 Mon Sep 17 00:00:00 2001 From: John Rees Date: Sun, 6 Jun 2021 11:04:09 +0100 Subject: [PATCH] use colons in interface --- js/packages/web/src/components/AmountLabel/index.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/packages/web/src/components/AmountLabel/index.tsx b/js/packages/web/src/components/AmountLabel/index.tsx index 7c96be0..ddcef9f 100644 --- a/js/packages/web/src/components/AmountLabel/index.tsx +++ b/js/packages/web/src/components/AmountLabel/index.tsx @@ -5,11 +5,11 @@ import { formatUSD } from '@oyster/common' import './index.less'; interface IAmountLabel { - amount: number | string, - displayUSD?: boolean, - title?: string, - style?: object, - containerStyle?: object, + amount: number | string; + displayUSD?: boolean; + title?: string; + style?: object; + containerStyle?: object; } export const AmountLabel = (props: IAmountLabel) => {