Skip to content

Commit

Permalink
不要なコードを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
swawa-yu committed Dec 27, 2023
1 parent 2b75518 commit 2f80d25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/search/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { subjectCodeList, subjectMap } from "../subject";
import { Subject, Campus, campuses } from "../subject/types";
import { parseSchedule } from "../subject/parser";
import { YoubiKomaSelected, extractYoubiAndKoma, youbis, komas, YoubiKoma, youbiKomaKeys } from "./KomaSelector";
import { YoubiKomaSelected, youbis, komas } from "./KomaSelector";

export interface SearchOptions {
campus: Campus | "その他" | "指定なし"
Expand Down
6 changes: 3 additions & 3 deletions src/table-view/SubjectUnitComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import React from 'react';
// } from './';

import './SubjectUnitComponent.css'
import { parseKaisetsuki, parseSchedule } from '../subject/parser'
// import { parseSchedule } from '../subject/parser'
// import { parseKaisetsuki, parseSchedule } from '../subject/parser'
import { parseSchedule } from '../subject/parser'
import { Subject } from '../subject/types';


Expand All @@ -19,7 +19,7 @@ type SubjectUnitComponentProps = {

const SubjectUnitComponent: React.FC<SubjectUnitComponentProps> = ({ subject: subject }) => {
const schedules = parseSchedule(subject["曜日・時限・講義室"]);
const kaisetsuki = parseKaisetsuki(subject["開設期"]);
// const kaisetsuki = parseKaisetsuki(subject["開設期"]);

return (
<div className="lecture-details">
Expand Down

0 comments on commit 2f80d25

Please sign in to comment.