Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
eMerzh committed Sep 19, 2023
1 parent e3ab52f commit 34dbefb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/ResultTable.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ActionIcon, Center, Group, MultiSelect, Table, Text, rem } from "@mantine/core";
import { IconInfoHexagonFilled, IconSortAscending, IconSortDescending } from "@tabler/icons-react";
import { Center, Group, MultiSelect, Table, Text, rem } from "@mantine/core";
import { IconSortAscending, IconSortDescending } from "@tabler/icons-react";
import { useMemo, useState } from "react";
import {
ComputeResult,
Expand Down Expand Up @@ -81,7 +81,7 @@ export default function ResultTable({ secondarySchools, scores, onSelectDetail,
setSortOrder(sortOrder == "asc" ? "desc" : "asc");
}}
>
Remplissage 2022
Rempl. 2022
{sortColumn === "fill" &&
(sortOrder == "asc" ? <IconSortAscending size={rem(14)} /> : <IconSortDescending size={rem(14)} />)}
</th>
Expand Down
2 changes: 1 addition & 1 deletion src/SchoolDetail.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Affix, Badge, Card, CloseButton, Group, List, Text, ThemeIcon, Tooltip } from "@mantine/core";
import { Affix, Badge, Card, CloseButton, Group, List, Text, Tooltip } from "@mantine/core";
import { ComputeResult, GeoLoc } from "./compute";
import Score from "./Score";
import { round } from "./utils";
Expand Down

0 comments on commit 34dbefb

Please sign in to comment.