Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,11 @@ spring:
password: ${DB_PASSWORD}
jpa:
hibernate:
ddl-auto: none # 운영 DB는 마이그레이션 툴 사용 권장(Flyway/Liquibase)
ddl-auto: none # 운영 DB는 마이그레이션 툴 사용 권장(Flyway/Liquibase)
show-sql: false
properties:
hibernate.format_sql: false

# show-sql: true
# properties:
# hibernate:
# format_sql: true
# dialect: org.hibernate.dialect.MySQL8Dialect

mysql:
charset: utf8mb4
collation: utf8mb4_unicode_ci
Expand Down
22 changes: 0 additions & 22 deletions src/main/resources/templates/homepage/user/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,27 +204,5 @@ <h3 class="text-lg font-medium text-gray-900 mb-2">${title}</h3>
}
});
</script>

<!--<script id="custom-checkbox-script">-->
<!-- document.addEventListener("DOMContentLoaded", function () {-->
<!-- // const checkbox = document.getElementById("remember-me");-->
<!-- // const customCheckbox = document.querySelector(".custom-checkbox");-->
<!-- // const checkIcon = customCheckbox.querySelector("i");-->

<!-- customCheckbox.addEventListener("click", function () {-->
<!-- checkbox.checked = !checkbox.checked;-->

<!-- if (checkbox.checked) {-->
<!-- customCheckbox.classList.add("bg-primary", "border-primary");-->
<!-- customCheckbox.classList.remove("border-gray-300");-->
<!-- checkIcon.classList.remove("hidden");-->
<!-- } else {-->
<!-- customCheckbox.classList.remove("bg-primary", "border-primary");-->
<!-- customCheckbox.classList.add("border-gray-300");-->
<!-- checkIcon.classList.add("hidden");-->
<!-- }-->
<!-- });-->
<!-- });-->
<!--</script>-->
</th:block>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/homepage/user/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ <h4 class="text-lg font-semibold text-gray-700">중국 주소 검색</h4>
</script>

<script id="checkAgencySignup">
document.addEventListener("DOMContentLoaded", function () {
document.addEventListener("turbo:load", function () {
const buttons = document.querySelectorAll("[data-agency-mode]");
const existingSection = document.getElementById("agency-existing-section");
const newSection = document.getElementById("agency-new-section");
Expand Down Expand Up @@ -998,7 +998,7 @@ <h3 class="text-lg font-medium text-gray-900 text-center mb-2">오류 발생</h3
console.error("지역 목록 불러오기 실패:", e);
// 필요하면 여기서 토스트/알림 띄워도 됨
}
})().then();
})().then();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

이 줄의 들여쓰기가 잘못되었습니다. 코드의 일관성을 위해 수정하는 것이 좋습니다.

Suggested change
})().then();
})().then();

</script>
</th:block>
</html>