Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-luger committed Aug 24, 2024
1 parent 7249321 commit 6e93230
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion components/AuthMod/AuthMod.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { useEffect, useState } from 'react'
import { getURLSearchParam } from '../../utils/Parser/URLParser'
import { useWasAlreadyLoggedIn } from '../../utils/Hooks'
import api from '../../api/ApiHelper'
import Link from 'next/link'
import { Button } from 'react-bootstrap'
Expand Down
2 changes: 0 additions & 2 deletions components/CraftsList/CraftDetails/CraftDetails.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use client'
import Image from 'next/image'
import { Badge } from 'react-bootstrap'
import Number from '../../Number/Number'
import { CraftingRecipe } from '../CraftingRecipe/CraftingRecipe'
import styles from './CraftDetails.module.css'
import { IngredientList } from '../IngredientList/IngredientList'

interface Props {
Expand Down
2 changes: 1 addition & 1 deletion components/CraftsList/IngredientList/IngredientList.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from 'next/image'
import Number from '../../Number/Number'
import { Badge, Container } from 'react-bootstrap'
import { Badge } from 'react-bootstrap'
import styles from './IngredientList.module.css'

interface Props {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { useEffect, useState } from 'react'
import api from '../../../../api/ApiHelper'
import { Button, Form, ListGroup, ListGroupItem, Modal } from 'react-bootstrap'
import Tooltip from '../../../Tooltip/Tooltip'
import { Button, Form, ListGroup, ListGroupItem } from 'react-bootstrap'
import { toast } from 'react-toastify'

const PublishedConfigs = () => {
Expand Down

0 comments on commit 6e93230

Please sign in to comment.