diff --git a/src/App.vue b/src/App.vue
index 8fd3ea1..24f3ce0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,18 +1,14 @@
-
diff --git a/src/components/BlueFolder.vue b/src/components/BlueFolder.vue
index ed254d8..6c4cac4 100644
--- a/src/components/BlueFolder.vue
+++ b/src/components/BlueFolder.vue
@@ -71,9 +71,6 @@ const filterAlgorithms = (algorithms: string[]) => {
src="../assets//mainpage/programers.svg"
class="mr-2 bg-[50%_50%] bg-cover bg-no-repeat w-[23px] h-[22px]"
/>
-
{{
truncateString(problem.problemTitle, 17)
}}
@@ -127,25 +124,3 @@ const filterAlgorithms = (algorithms: string[]) => {
-
diff --git a/src/components/Editor.vue b/src/components/Editor.vue
index 73ef8fd..efa4f55 100644
--- a/src/components/Editor.vue
+++ b/src/components/Editor.vue
@@ -24,11 +24,7 @@ export default {
};
},
mounted() {
- // 문제 데이터 가져오기
- // const problemStore = useProblemStore();
- // if (!problemStore.problems.length) {
- // problemStore.fetchProblems();
- // }
+
const boardStore = useBoardStore();
const route = useRoute();
const boardId = Number(route.params.id);
@@ -45,11 +41,6 @@ export default {
previewStyle: 'vertical',
plugins: [[codeSyntaxHighlight, { highlighter: Prism }], colorSyntax],
});
-
- // boardData의 content를 에디터에 설정
- // if (this.boardData?.solutions?.[0]?.content) {
- // this.editor.setMarkdown(this.boardData.solutions[0].content);
- // }
});
// SUBMIT 버튼 클릭 이벤트
@@ -83,7 +74,6 @@ export default {
@@ -121,9 +111,6 @@ export default {
class="mb-[30px] p-[20px] border-[2px] bg-white border-gray-300 rounded-[10px] font-Pretendards text-[20px]"
>
{{ boardData.board.memo }}
-