Skip to content

Commit

Permalink
Wrong command name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodecleyre committed Nov 12, 2024
1 parent 4afda86 commit 020c8b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/m365/pp/commands/website/website-get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface CommandArgs {
options: Options;
}

class PpWebsiteListCommand extends PowerPlatformCommand {
class PpWebsiteGetCommand extends PowerPlatformCommand {

Check failure on line 28 in src/m365/pp/commands/website/website-get.ts

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 20, 20)

'PpWebsiteGetCommand' is not a valid command class name. Expected 'PpWebSiteGetCommand'
public get name(): string {
return commands.WEBSITE_GET;
}
Expand Down Expand Up @@ -74,4 +74,4 @@ class PpWebsiteListCommand extends PowerPlatformCommand {
}
}

export default new PpWebsiteListCommand();
export default new PpWebsiteGetCommand();

0 comments on commit 020c8b1

Please sign in to comment.