Skip to content

Commit

Permalink
refactor: refactor computed
Browse files Browse the repository at this point in the history
  • Loading branch information
andreadlgdo committed May 30, 2024
1 parent 00b75e6 commit 56241d6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
*
* @internal
*/
const events = computed((): Partial<XEventsTypes> => {
return { UserClickedPanelToggleButton: props.panelId };
});
const events = computed(
(): Partial<XEventsTypes> => ({ UserClickedPanelToggleButton: props.panelId })
);
/**
* The subscription to the {@link XEventsTypes.TogglePanelStateChanged} event
Expand Down

0 comments on commit 56241d6

Please sign in to comment.