diff --git a/plugins/cost-insights/src/components/CurrencySelect/CurrencySelect.tsx b/plugins/cost-insights/src/components/CurrencySelect/CurrencySelect.tsx
index 1b5920ffcb..2db1b8ee38 100644
--- a/plugins/cost-insights/src/components/CurrencySelect/CurrencySelect.tsx
+++ b/plugins/cost-insights/src/components/CurrencySelect/CurrencySelect.tsx
@@ -15,7 +15,13 @@
*/
import React from 'react';
-import { MenuItem, Select, SelectProps } from '@material-ui/core';
+import {
+ InputLabel,
+ FormControl,
+ MenuItem,
+ Select,
+ SelectProps,
+} from '@material-ui/core';
import { Currency, CurrencyType } from '../../types';
import { findAlways } from '../../utils/assert';
import { useSelectStyles as useStyles } from '../../utils/styles';
@@ -51,24 +57,28 @@ export const CurrencySelect = ({
};
return (
-
+
+ Convert to:
+
+
);
};