Datetimepicker Error: TD:: "display.format" in not a known option

After updating to v2022.4.0, I got the following Javascript error from Console section of browser. This error happened when clicking on calendar icon in DateTime field:

Uncaught Error: TD:: "display.format" in not a known option.
    at ErrorMessages.unexpectedOptions (/demo2022/js/tempus-dominus.min.js:1)
    at n (/demo2022/js/tempus-dominus.min.js:1)
    at /demo2022/js/tempus-dominus.min.js:1
    at Array.forEach (<anonymous>)
    at n (/demo2022/js/tempus-dominus.min.js:1)
    at Function._mergeOptions (/demo2022/js/tempus-dominus.min.js:1)
    at TempusDominus._initializeOptions (/demo2022/js/tempus-dominus.min.js:1)
    at new TempusDominus (/demo2022/js/tempus-dominus.min.js:1)
    at Object.jQueryHandleThis (/demo2022/js/tempus-dominus.min.js:1)
    at S.fn.init.jQueryInterface [as tempusDominus] (/demo2022/js/tempus-dominus.min.js:1)

Thoughts?

Make sure the new tempus-dominus.min.js is generated and press Ctrl + F5 in your browser to refresh the page.

After pressing Ctrl + F5, now it works properly.

To avoid pressing Ctrl + F5, could you please add version number to the .js file in header.html file of datetimepicker extension, for example:

<script>
loadjs(ew.PATH_BASE + "<#= cssFolder #><#= Code.write(Code.cssFile(`"${GetBaseFileName("datetimepickerscss").replace(/\.scss$/i, ".css")}"`, false)) #>");
ew.ready("head", [
    ew.PATH_BASE + "<#= jsFolder #>tempus-dominus.min.js?v=1634548153",
    ew.PATH_BASE + "<#= jsFolder #>ewdatetimepicker.min.js?v=1634548153"
], "datetimepicker");
</script>

Please note that 1634548153 is the output from PHP filemtime() function based on the release date of the .js file.