style(@cockpit/utils): remove stray type annotation

This commit is contained in:
Michael Bradley, Jr 2019-12-02 08:44:55 -06:00 committed by Michael Bradley
parent 63cb420351
commit 6bb673ef87
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ export function stripQueryParam(location, param) {
export const isDarkTheme = (theme) => theme === DARK_THEME;
export function getWeiBalanceFromString(balanceString: string) {
export function getWeiBalanceFromString(balanceString) {
if (!balanceString) {
return 0;
}