In Drupal 9.4, jQuery.once() has been removed. However, there's a Javascript function, once(), that can replace it with a little rewriting:
var closeButton = $("#off-canvas .offcanvas__close");
closeButton.once().on("click", function () {
closeOffCanvas();
});once takes 3 arguments: 1. Arbitrary key, 2. CSS selector, 3. context