We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abffb11 commit 4a51aadCopy full SHA for 4a51aad
frontend/src/pages/generation/Assignment.jsx
@@ -22,7 +22,7 @@ const Assignment = () => {
22
label: `${weekItem.week}주차 ${weekItem.subject}`,
23
details: weekItem.days.map((dayItem) => ({
24
day: dayItem.day,
25
- subject: weekItem.title,
+ subject: weekItem.subject,
26
tasks: dayItem.details.map((task) => ({
27
label: task.assignmentName,
28
status: mapStatus(task.status),
frontend/vite.config.js
@@ -7,7 +7,7 @@ export default defineConfig({
7
server: {
8
proxy: {
9
"/api": {
10
- target: "http://localhost:8080",
+ target: "http://api.pirocheck.org:8080/api",
11
changeOrigin: true,
12
},
13
0 commit comments