From 5ce935de49cb7d450a1fc5168a9d3ac0a6f6a205 Mon Sep 17 00:00:00 2001 From: morgane Date: Thu, 18 Jun 2026 17:30:45 +0000 Subject: [PATCH] Actualiser assets/js/app.js --- assets/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/js/app.js b/assets/js/app.js index e1d0fa0..930802a 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -6120,6 +6120,10 @@ function setReviewConfirmed(inventoryId) { api('app_settings_save', {}, 'POST', { settings: { review_confirmed: c } }).catch(() => {}); } +/** Return map of product IDs the user has marked as "no expiry needed". */ +function _getNoExpiryDismissed() { + return _noExpiryDismissedCache || {}; +} /** Permanently mark a product as "no expiry needed" for this browser. */ function _dismissNoExpiry(productId) { const m = Object.assign({}, _noExpiryDismissedCache || {});