Skip to content

Commit fad9f07

Browse files
Merge pull request #133 from sparcs-kaist/feat@remove-zabo-embed
자보 임베드 삭제
2 parents f2d92be + 8e42738 commit fad9f07

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"name": "otlplus",
33
"version": "0.1.0",
44
"private": true,
5-
"engines": {
6-
"node": "^18"
7-
},
85
"scripts": {
96
"dev": "vite --host",
107
"build": "vite build",
@@ -46,8 +43,7 @@
4643
"react-scrollbars-custom": "^4.0.21",
4744
"react-slick": "^0.29.0",
4845
"redux": "^4.0.0",
49-
"slick-carousel": "^1.8.1",
50-
"zabo-embed": "^0.0.7"
46+
"slick-carousel": "^1.8.1"
5147
},
5248
"devDependencies": {
5349
"@babel/plugin-proposal-decorators": "^7.24.1",

src/pages/MainPage.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import React, { Component } from 'react';
22
import { connect } from 'react-redux';
33
import { withTranslation } from 'react-i18next';
4-
import PropTypes, { bool } from 'prop-types';
4+
import PropTypes from 'prop-types';
55
import axios from 'axios';
66
import { range } from 'lodash';
77
import { Link } from 'react-router-dom';
8-
import { ZaboEmbed } from 'zabo-embed';
98

109
import { appBoundClassNames as classNames } from '../common/boundClassNames';
1110

@@ -247,7 +246,6 @@ class MainPage extends Component {
247246
const feeds = [
248247
<TodaysTimetableSection key="TODAYS_TIMETABLE" />,
249248
<AcademicScheduleSection key="ACADEMIC_SCHEDULE" />,
250-
<ZaboEmbed key="ZABO_EMBED" serviceColor="#E54C65" style={{ marginBottom: 12 }} />,
251249
notices
252250
? notices.map((n) => (
253251
<NoticeSection notice={n} key={`${n.start_date}-${n.end_date}-${n.title}`} />

0 commit comments

Comments
 (0)