Skip to content

Commit

Permalink
Merge pull request #78 from innovationacademy-kr/fe/dev/feat_v3/#75
Browse files Browse the repository at this point in the history
[FE] FIX: type-check 수정
  • Loading branch information
42inshin authored Dec 29, 2023
2 parents c14f8a2 + ac45296 commit 9fc57da
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 15 deletions.
40 changes: 29 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.12",
"@types/node": "^18.19.3",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
Expand Down
1 change: 0 additions & 1 deletion src/components/home/UserNumSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import UserNumCard from "@/components/home/UserNumCard.vue";
const props = defineProps<{
numberOfPeople: {
gaepo: number;
seocho: number;
};
isOnline: boolean;
}>();
Expand Down
3 changes: 1 addition & 2 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ watch(getUserInfo, () => {
const updateTime = () => {
todayAccTime.value = getAccDate();
// updateTime 로직 구현
};
const startTimer = () => {
Expand All @@ -99,7 +98,7 @@ const startTimer = () => {
updateTime();
// 그 후 매 분마다 업데이트
intervalId.value = setInterval(updateTime, 60000);
intervalId.value = window.setInterval(updateTime, 60000);
}, delay);
};
Expand Down

0 comments on commit 9fc57da

Please sign in to comment.