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) => {