This commit is contained in:
2024-06-23 07:19:02 +04:00
parent 73ac8c4ffd
commit 20049e2bc9
+2 -2
View File
@@ -24,7 +24,7 @@ export default function Create({session}) {
const [error, setError] = useState('')
const [success, setSuccess] = useState('')
const handleTitresDialog = collection => {
const handleClick = collection => {
setCollection(collection)
setIsDialogOpen(true)
}
@@ -58,7 +58,7 @@ export default function Create({session}) {
key={name}
icon={icon}
tooltipTitle={name}
onClick={() => handleTitresDialog(id)}
onClick={() => handleClick(id)}
/>
))}
</SpeedDial>