Skip to content

Commit

Permalink
[fix] Fix failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
TetraTsunami committed Nov 15, 2024
1 parent 7eca2ba commit bf138da
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/pages/AdminCRUD.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@ import { addDocWithTimestamp, setDocWithTimestamp, deleteDocWithTimestamp } from
import LoadingOverlay from '@/components/LoadingOverlay'
import { SketchPicker } from 'react-color'
import { Category, Type, DB } from '@/types'
import { useNavigate } from 'react-router-dom'

interface CrudProps {
firestore: Firestore
data: DB
}

const AdminCRUD: React.FC<CrudProps> = ({ firestore, data }) => {
const navigate = useNavigate()

const [isLoading, setIsLoading] = useState(false)
const [showAddEntity, setShowAddEntity] = useState(false)
const [addEntityName, setAddEntityName] = useState('')
Expand Down

0 comments on commit bf138da

Please sign in to comment.