Skip to content

Commit

Permalink
refactor(envited.ascs.digital): Fix showDialog default state (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenbranje authored Mar 11, 2024
2 parents 5cb06f2 + 50da168 commit c2ebdb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface DialogConfirmProps {
export const UserDialogConfirm: FC<DialogConfirmProps> = ({ id }) => {
const { t } = useTranslation('Users')
const { error, success } = useNotification()
const [showDialog, setShowDialog] = useState(true)
const [showDialog, setShowDialog] = useState(false)

const deleteUserWithId = (id: string) => async () => {
try {
Expand Down

0 comments on commit c2ebdb8

Please sign in to comment.