Skip to content

Commit

Permalink
Fix some files to satisfy the lint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
khkim6040 committed Mar 24, 2024
1 parent 0c1f603 commit 8ae36be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/board/notice/notice.table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const NoticeTable = ({ notices }) => {
</Table.Row>
</Table.Header>
<Table.Body>
{notices.map((notice, idx) => {
{notices.map((notice) => {
const isActive = moment().isBetween(
moment(notice.start_datetime),
moment(notice.end_datetime),
Expand Down
2 changes: 1 addition & 1 deletion components/common/csv-upload.form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const CsvUploadForm = ({ label, uploadUri }) => {
PoPoAxios.get('/setting/sync-rc-students-list', {
withCredentials: true,
})
.then((res) => {
.then(() => {
alert('업로드가 완료 되었습니다!');
})
.catch((err) => {
Expand Down

0 comments on commit 8ae36be

Please sign in to comment.