Skip to content

Commit

Permalink
lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hsteuernagel committed Sep 11, 2024
1 parent a34eb25 commit f9771e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/js/src/admin/user/component/activate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const props = defineProps({
const activeButtonText = computed(() => props.active ? 'Deactivate User' : 'Activate User');
async function toggleActive() {
async function toggleActive () {
if (!state.value.matches('ready')) {
return;
}
Expand Down Expand Up @@ -107,7 +107,7 @@ async function toggleActive() {
}
}
function delayedReset() {
function delayedReset () {
setTimeout(() => {
sendEvent({ type: 'RESET' });
}, 3000);
Expand Down

0 comments on commit f9771e6

Please sign in to comment.