Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
yosupo06 committed Oct 22, 2023
1 parent 3bfaefc commit e236346
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/ProblemList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import TableCell from "@mui/material/TableCell";
import TableContainer from "@mui/material/TableContainer";
import TableRow from "@mui/material/TableRow";
import React from "react";
import { Problem } from "../api/library_checker";
import { Problem } from "../proto/library_checker";
import { Link } from "react-router-dom";
import { lightGreen, cyan } from "@mui/material/colors";
import KatexTypography from "./katex/KatexTypography";
Expand Down
4 changes: 2 additions & 2 deletions src/components/SubmissionTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import "katex/dist/katex.min.css";
import React from "react";
import { Link } from "react-router-dom";
import { useLangList } from "../api/client_wrapper";
import { SubmissionOverview } from "../api/library_checker";
import { SubmissionOverview } from "../proto/library_checker";
import KatexTypography from "./katex/KatexTypography";
import { styled } from "@mui/system";
import { Timestamp } from "../api/google/protobuf/timestamp";
import { Timestamp } from "../proto/google/protobuf/timestamp";

interface Props {
overviews: SubmissionOverview[];
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ProblemInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import library_checker_client, {
useLangList,
useProblemInfo,
} from "../api/client_wrapper";
import { ProblemInfoResponse } from "../api/library_checker";
import { ProblemInfoResponse } from "../proto/library_checker";
import SourceEditor from "../components/SourceEditor";
import { AuthContext } from "../contexts/AuthContext";
import { GitHub, FlashOn, Person } from "@mui/icons-material";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Problems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
useProblemList,
useUserInfo,
} from "../api/client_wrapper";
import { SolvedStatus } from "../api/library_checker";
import { SolvedStatus } from "../proto/library_checker";
import ProblemList from "../components/ProblemList";
import { AuthContext } from "../contexts/AuthContext";
import {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/SubmissionInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import CircularProgress from "@mui/material/CircularProgress";
import Link from "@mui/material/Link";
import { LibraryBooks } from "@mui/icons-material";
import { Collapse, Container, Divider, IconButton } from "@mui/material";
import { SubmissionCaseResult } from "../api/library_checker";
import { SubmissionCaseResult } from "../proto/library_checker";
import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp";

Expand Down
2 changes: 1 addition & 1 deletion src/utils/ProblemCategorizer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Problem, ProblemCategory } from "../api/library_checker";
import { Problem, ProblemCategory } from "../proto/library_checker";

export type CategorisedProblems = {
name: string;
Expand Down

0 comments on commit e236346

Please sign in to comment.