Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-two-factor-auth/view/adminhtml/web/js/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-two-factor-auth/view/adminhtml/web/js/error.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

define([
    'jquery',
    'Magento_Ui/js/modal/alert',
    'mage/translate'
], function ($, alert) {
    'use strict';

    return {
        /**
         * Display an error message
         * @param {String} message
         */
        display: function (message) {
            alert({
                title: $.mage.__('Error'),
                content: message
            });
        }
    };
});