Skip to content

Commit

Permalink
fix(be): resolve upload-problem error (#2057)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaehyeon1020 authored Sep 1, 2024
1 parent 92645c3 commit 5c41933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/apps/admin/src/problem/problem.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class ProblemService {
header['OutputFileName'],
header['OutputFilePath']
]
worksheet.eachRow(async function (row, rowNumber) {
worksheet.eachRow(function (row, rowNumber) {
for (const colNumber of unsupportedFields) {
if (row.getCell(colNumber).text !== '')
throw new UnprocessableFileDataException(
Expand Down

0 comments on commit 5c41933

Please sign in to comment.