Skip to content

Commit 8a178c7

Browse files
authored
[Feat/service/#70] UI 수정사항 반영
2 parents 46fadf2 + 050440c commit 8a178c7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+896
-69
lines changed

apps/service/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@
2020
"react": "^19",
2121
"react-dom": "^19",
2222
"react-hook-form": "^7.54.2",
23+
"react-toastify": "^11.0.3",
2324
"swiper": "^11.2.5"
2425
},
2526
"devDependencies": {
2627
"@svgr/webpack": "^8.1.0",
28+
"@tailwindcss/postcss": "^4.0.4",
2729
"@tanstack/eslint-plugin-query": "^5.66.0",
2830
"@types/node": "^20",
2931
"@types/react": "^19",
Lines changed: 11 additions & 0 deletions
Loading
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

apps/service/src/apis/controller/submit/postProblemSubmit.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { client } from '@apis';
22

3-
const postProblemSubmit = async (publishId: string, problemId: string) => {
3+
const postProblemSubmit = async (publishId: number, problemId: number) => {
44
return await client.POST('/api/v1/client/problemSubmit', {
55
body: {
6-
publishId: Number(publishId),
7-
problemId: Number(problemId),
6+
publishId,
7+
problemId,
88
},
99
});
1010
};

apps/service/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const metadata: Metadata = {
1717
? new URL('http://www.dev.math-pointer.com')
1818
: new URL('https://math-pointer.com'),
1919
title: '포인터',
20-
description: '포인터',
20+
description: '진단과 학습은 꼼꼼하게 성적 향상은 빠르게',
2121
robots: isDevelopment
2222
? {
2323
index: false,
-34.5 KB
Loading

0 commit comments

Comments
 (0)