Skip to content

Commit

Permalink
Fixed overflowing of episode titles in wanted view. #2419
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Mar 13, 2024
1 parent 2b92752 commit a9f438b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/pages/Wanted/Series/index.tsx
Expand Up @@ -10,7 +10,7 @@ import { useTableStyles } from "@/styles";
import { BuildKey } from "@/utilities";
import { faSearch } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { Anchor, Badge, Group, Text } from "@mantine/core";
import { Anchor, Badge, Group } from "@mantine/core";
import { FunctionComponent, useMemo } from "react";
import { Link } from "react-router-dom";
import { Column } from "react-table";
Expand All @@ -37,11 +37,6 @@ const WantedSeriesView: FunctionComponent = () => {
},
{
accessor: "episodeTitle",
Cell: ({ value }) => {
const { classes } = useTableStyles();

return <Text className={classes.noWrap}>{value}</Text>;
},
},
{
Header: "Missing",
Expand Down

0 comments on commit a9f438b

Please sign in to comment.