Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-costas authored and vanvugt committed Jun 10, 2024
1 parent e37e325 commit 28e64a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion desktopIconsIntegration.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ const IDENTIFIER_UUID = '130cbc66-235c-4bd6-8571-98d2d8bba5e2';

export class DesktopIconsUsableAreaClass {
_checkIfExtensionIsEnabled(extension) {
return ((extension?.state === ExtensionUtils.ExtensionState.ENABLED) || (extension?.state === ExtensionUtils.ExtensionState.ACTIVE));
return (extension?.state === ExtensionUtils.ExtensionState.ENABLED) ||
(extension?.state === ExtensionUtils.ExtensionState.ACTIVE);
}

constructor() {
Expand Down

0 comments on commit 28e64a9

Please sign in to comment.