UNPKG

@ledgerhq/live-common

Version:
13 lines 526 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAmountScreenMessage = getAmountScreenMessage; function getAmountScreenMessage(params) { if (params.amountErrorTitle && params.hasRawAmount) { return { type: "error", text: params.amountErrorTitle }; } if (params.amountWarningTitle && params.hasRawAmount) { return { type: params.isFeeTooHigh ? "info" : "warning", text: params.amountWarningTitle }; } return null; } //# sourceMappingURL=messages.js.map