From 15070cbccd28341491789b8df290407eb2d15ec4 Mon Sep 17 00:00:00 2001 From: appsu-mi Date: Mon, 13 Jan 2025 12:50:17 +0900 Subject: [PATCH] =?UTF-8?q?=E8=8B=B1=E6=96=87=E3=81=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E6=AD=A3=E3=81=97=E3=81=84=E5=BD=A2=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/javascript/check-stamp.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/javascript/check-stamp.js b/app/javascript/check-stamp.js index f997187beab..5c0f7925ed5 100644 --- a/app/javascript/check-stamp.js +++ b/app/javascript/check-stamp.js @@ -3,10 +3,10 @@ import CSRF from 'csrf' import 'whatwg-fetch' document.addEventListener('DOMContentLoaded', () => { - loadingCheckStamp() + loadCheckStamp() }) -const loadingCheckStamp = () => { +const loadCheckStamp = () => { const checkStamp = document.getElementById('js-check-stamp') if (!checkStamp) return @@ -47,4 +47,4 @@ const loadingCheckStamp = () => { }) } -export default loadingCheckStamp +export default loadCheckStamp