Skip to content

Commit

Permalink
Function names corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek Jasud committed Jan 22, 2025
1 parent 3440e23 commit 28aa4f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/application/services/useNavbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function useNavbar(): useNavbarComposableState {
* Delete all opened pages excluding Home page
*/
function deleteOpenedPages(): void {
workspaceService.deleteOpenPages();
workspaceService.deleteOpenedPages();
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/domain/workspace.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class WorkspaceService {
/**
* Delete opened pages excluding Home Page
*/
public deleteOpenPages(): void {
this.repository.deleteOpenPages();
public deleteOpenedPages(): void {
this.repository.deleteOpenedPages();
}
}

0 comments on commit 28aa4f2

Please sign in to comment.