dev #935

Merged
ysCha merged 8 commits from dev into prd-deploy 2026-06-29 16:38:57 +09:00
Showing only changes of commit b031e703ec - Show all commits

View File

@ -80,14 +80,14 @@ export default function MainContents({ setFaqOpen, setFaqModalNoticeNo }) {
//
const fetchNoticeList = async () => {
const param = {
schNoticeTpCd: 'QC',
schNoticeClsCd: 'NOTICE',
startRow: 1,
endRow: 1,
}
const noticeApiUrl = `api/board/list?${queryStringFormatter(param)}`
try {
const param = {
schNoticeTpCd: 'QC',
schNoticeClsCd: 'NOTICE',
startRow: 1,
endRow: 1,
}
const noticeApiUrl = `api/board/list?${queryStringFormatter(param)}`
await promiseGet({ url: noticeApiUrl }).then((res) => {
if (res.status === 200) {
setRecentNoticeList(res.data.data)
@ -111,14 +111,14 @@ export default function MainContents({ setFaqOpen, setFaqModalNoticeNo }) {
//FAQ
const fetchFaqList = async () => {
const param = {
schNoticeTpCd: 'QC',
schNoticeClsCd: 'FAQ',
startRow: 1,
endRow: 3,
}
const faqApiUrl = `api/board/list?${queryStringFormatter(param)}`
try {
const param = {
schNoticeTpCd: 'QC',
schNoticeClsCd: 'FAQ',
startRow: 1,
endRow: 3,
}
const faqApiUrl = `api/board/list?${queryStringFormatter(param)}`
await promiseGet({
url: faqApiUrl,
}).then((res) => {