<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">define(
    [
        'uiComponent',
        'jquery',
        'Magento_CustomerCustomAttributes/js/dependent-validation'
    ],
    function (Component, $) {
        'use strict';

        return Component.extend({

            /**
             * This component is enabling the submit button when the validator module is fully loaded,
             * otherwise a server validation will take place and we dont want that
             * @param config
             * @param node
             */
            initialize: function (config, node) {
                $(node).prop('disabled', false);
            }
        });
    }
);
</pre></body></html>