Skip to content

Commit

Permalink
fix: Space deletion not working
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR committed Nov 27, 2023
1 parent 5daf487 commit b642fb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/SpaceSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const settingsPages = computed(() => [
async function handleDelete() {
modalDeleteSpaceConfirmation.value = '';
const result = await send(props.space, 'delete-space', null);
const result = await send(props.space, 'delete-space', {});
console.log(':handleDelete result', result);
if (result && result.id) {
Expand Down

0 comments on commit b642fb6

Please sign in to comment.