Skip to content

Commit

Permalink
Fix linting issues again
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianruesch committed Dec 6, 2023
1 parent bb0296f commit 5013be1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/EpicView/EpicView.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {Group, Stack, Text, Title, ScrollArea, Box, Button, Center, Loader} from "@mantine/core";
import {useNavigate} from "react-router-dom";
import {useCanvasStore} from "../../lib/Store";
import {useState} from "react";
import {useQuery} from "@tanstack/react-query";
import {useCanvasStore} from "../../lib/Store";
import {CreateIssueModal} from "../CreateIssue/CreateIssueModal";
import {Issue} from "../../../types";
import {EpicWrapper} from "./EpicWrapper";
import {useQuery} from "@tanstack/react-query";
import {getEpics} from "./helpers/queryFetchers";


Expand Down
7 changes: 3 additions & 4 deletions src/components/EpicView/EpicWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ export function EpicWrapper({
epics: Issue[]
}){
return (
<Stack
spacing={"sm"}>
{epics.map((epic: Issue, index) => (
<EpicCard {...epic} key={epic.issueKey} index={index} />
<Stack spacing="sm">
{epics.map((epic: Issue) => (
<EpicCard {...epic} key={epic.issueKey} />
))}
</Stack>
)
Expand Down

0 comments on commit 5013be1

Please sign in to comment.