Skip to content

Commit

Permalink
Remove unused variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
robol committed Oct 27, 2023
1 parent b2266d5 commit 70ce8f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/processes/AddSeminar.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Button, Card, Form } from 'react-bootstrap'
import { ModelInput } from '../components/ModelInput'
import { useState } from 'react'
import { useEngine } from '../Engine'

export default function AddSeminar() {
const [speaker, setSpeaker] = useState(null)
Expand Down Expand Up @@ -30,7 +29,7 @@ export default function AddSeminar() {
}

function SeminarDetailsBlock({ speaker, onCompleted }) {
const [confirm, setConfirm] = useState(false)
const [confirm] = useState(false)

return <Card className="shadow">
<Card.Header>Dettagli del seminario [speaker: <strong>{speaker?.firstName} {speaker?.lastName}</strong>]</Card.Header>
Expand Down

0 comments on commit 70ce8f9

Please sign in to comment.